diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-28 10:55:24 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-28 10:55:24 +0000 |
commit | 3b7f9863109027ae35f998f2d59a0e19058abc44 (patch) | |
tree | ab947267e8f7394545a2f370cf98d0c7770bd392 /tbl.c | |
parent | 286061d81e796071073499302a69149ed9f93354 (diff) | |
download | mandoc-3b7f9863109027ae35f998f2d59a0e19058abc44.tar.gz |
Fixed enum rofferr return value in tbl_read() (oops).
Diffstat (limited to 'tbl.c')
-rw-r--r-- | tbl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ tbl_read(struct tbl *tbl, int ln, const char *p, int offs) if (';' != cp[len - 1]) tbl->part = TBL_PART_LAYOUT; - return(1); + return(ROFF_CONT); } struct tbl * |