summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-11-02 08:29:25 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-11-02 08:29:25 +0000
commit4ff92f97d4260b3ca041885efbb560dedeecb80f (patch)
treeaeefecede076f81bba64c2c11634e84f6b0cefe1 /main.c
parentd0b5944b6866943fc00e03e4f6bdf10972d56575 (diff)
downloadmandoc-4ff92f97d4260b3ca041885efbb560dedeecb80f.tar.gz
Added forgotten newline terminators in main.c.
Diffstat (limited to 'main.c')
-rw-r--r--main.c8
1 files changed, 4 insertions, 4 deletions
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);
}
}