diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-11-02 08:29:25 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-11-02 08:29:25 +0000 |
commit | 4ff92f97d4260b3ca041885efbb560dedeecb80f (patch) | |
tree | aeefecede076f81bba64c2c11634e84f6b0cefe1 | |
parent | d0b5944b6866943fc00e03e4f6bdf10972d56575 (diff) | |
download | mandoc-4ff92f97d4260b3ca041885efbb560dedeecb80f.tar.gz |
Added forgotten newline terminators in main.c.
-rw-r--r-- | main.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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); } } |