]> git.cameronkatri.com Git - mandoc.git/commitdiff
Fix enum/int mixing.
authorKristaps Dzonsons <kristaps@bsd.lv>
Wed, 1 Dec 2010 17:00:05 +0000 (17:00 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Wed, 1 Dec 2010 17:00:05 +0000 (17:00 +0000)
main.c

diff --git a/main.c b/main.c
index 16b54def251c26cfa738942ef75d5e06b3d1127f..4c7db9c8eaf847757276f0e66721427e6f0b09f0 100644 (file)
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/*     $Id: main.c,v 1.113 2010/12/01 16:54:25 kristaps Exp $ */
+/*     $Id: main.c,v 1.114 2010/12/01 17:00:05 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
 /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -629,6 +629,7 @@ static void
 parsebuf(struct curparse *curp, struct buf blk, int start)
 {
        struct buf       ln;
 parsebuf(struct curparse *curp, struct buf blk, int start)
 {
        struct buf       ln;
+       enum rofferr     rr;
        int              i, of, rc;
        int              pos; /* byte number in the ln buffer */
        int              lnn; /* line number in the real file */
        int              i, of, rc;
        int              pos; /* byte number in the ln buffer */
        int              lnn; /* line number in the real file */
@@ -743,11 +744,11 @@ parsebuf(struct curparse *curp, struct buf blk, int start)
                of = 0;
 
 rerun:
                of = 0;
 
 rerun:
-               rc = roff_parseln
+               rr = roff_parseln
                        (curp->roff, curp->line, 
                         &ln.buf, &ln.sz, of, &of);
 
                        (curp->roff, curp->line, 
                         &ln.buf, &ln.sz, of, &of);
 
-               switch (rc) {
+               switch (rr) {
                case (ROFF_REPARSE):
                        parsebuf(curp, ln, 0);
                        pos = 0;
                case (ROFF_REPARSE):
                        parsebuf(curp, ln, 0);
                        pos = 0;