summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-07-28 10:15:12 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-07-28 10:15:12 +0000
commitc8cf04457494ae457f83dee07e4cbebe2b439132 (patch)
tree2de6db1a095a83235e3a9e98d01b19a2459ba387 /main.c
parentff829fb63a81e275a350d4f7c781aca1acf92661 (diff)
downloadmandoc-c8cf04457494ae457f83dee07e4cbebe2b439132.tar.gz
Fix in newline.
Correct printing of N-char predefined/special strings.
Diffstat (limited to 'main.c')
-rw-r--r--main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.c b/main.c
index b8c5aa33..d5b57138 100644
--- a/main.c
+++ b/main.c
@@ -418,7 +418,8 @@ fdesc(struct buf *blk, struct buf *ln, struct curparse *curp)
/* NOTE a parser may not have been assigned, yet. */
if ( ! (man || mdoc)) {
- (void)fprintf(stderr, "%s: not a manual", curp->file);
+ (void)fprintf(stderr, "%s: not a manual\n",
+ curp->file);
return(0);
}