From 4ff92f97d4260b3ca041885efbb560dedeecb80f Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Mon, 2 Nov 2009 08:29:25 +0000 Subject: Added forgotten newline terminators in main.c. --- main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'main.c') diff --git a/main.c b/main.c index ad308c08..ddc74756 100644 --- a/main.c +++ b/main.c @@ -531,7 +531,7 @@ moptions(enum intt *tflags, char *arg) else if (0 == strcmp(arg, "an")) *tflags = INTT_MAN; else { - fprintf(stderr, "%s: Bad argument", arg); + fprintf(stderr, "%s: Bad argument\n", arg); return(0); } @@ -552,7 +552,7 @@ toptions(enum outt *tflags, char *arg) else if (0 == strcmp(arg, "html")) *tflags = OUTT_HTML; else { - fprintf(stderr, "%s: Bad argument", arg); + fprintf(stderr, "%s: Bad argument\n", arg); return(0); } @@ -601,7 +601,7 @@ foptions(int *fflags, char *arg) *fflags &= ~NO_IGN_ESCAPE; break; default: - fprintf(stderr, "%s: Bad argument", o); + fprintf(stderr, "%s: Bad argument\n", o); return(0); } } @@ -630,7 +630,7 @@ woptions(int *wflags, char *arg) *wflags |= WARN_WERR; break; default: - fprintf(stderr, "%s: Bad argument", o); + fprintf(stderr, "%s: Bad argument\n", o); return(0); } } -- cgit