From bd5de413393bf2cd10538abdb4471c9524187eed Mon Sep 17 00:00:00 2001 From: Philippe Charnier Date: Mon, 26 Jul 2004 20:24:59 +0000 Subject: [PATCH] No capital letter after : --- usr.bin/pr/pr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/pr/pr.c b/usr.bin/pr/pr.c index 1867c7c5bc1..947404217bd 100644 --- a/usr.bin/pr/pr.c +++ b/usr.bin/pr/pr.c @@ -1328,7 +1328,7 @@ nxtfile(int argc, char **argv, const char **fname, char *buf, int dt) ++errcnt; if (nodiag) continue; - (void)fprintf(err, "pr: Cannot open %s, %s\n", + (void)fprintf(err, "pr: cannot open %s, %s\n", argv[eoptind], strerror(errno)); continue; } @@ -1357,7 +1357,7 @@ nxtfile(int argc, char **argv, const char **fname, char *buf, int dt) ++errcnt; (void)fclose(inf); (void)fprintf(err, - "pr: Cannot stat %s, %s\n", + "pr: cannot stat %s, %s\n", argv[eoptind], strerror(errno)); return(NULL); } @@ -1673,7 +1673,7 @@ setup(int argc, char *argv[]) case 'l': if (!isdigit((unsigned char)*eoptarg) || ((lines=atoi(eoptarg)) < 1)) { (void)fputs( - "pr: Number of lines must be 1 or more\n",err); + "pr: number of lines must be 1 or more\n",err); return(1); } break;