]> git.cameronkatri.com Git - mandoc.git/commitdiff
Lint-check (removed unused variable).
authorKristaps Dzonsons <kristaps@bsd.lv>
Fri, 17 Jul 2009 12:28:38 +0000 (12:28 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Fri, 17 Jul 2009 12:28:38 +0000 (12:28 +0000)
mdoc_argv.c

index 9b12e2194486e2499f49c5307e6e93354b2c3a80..ef82ee89d8c73297d558cb4404cebc8499cabe42 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_argv.c,v 1.15 2009/07/17 12:27:49 kristaps Exp $ */
+/*     $Id: mdoc_argv.c,v 1.16 2009/07/17 12:28:38 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -221,7 +221,6 @@ int
 mdoc_argv(struct mdoc *m, int line, int tok,
                struct mdoc_arg **v, int *pos, char *buf)
 {
-       int               i;
        char             *p, sv;
        struct mdoc_argv tmp;
        struct mdoc_arg  *arg;
@@ -233,7 +232,6 @@ mdoc_argv(struct mdoc *m, int line, int tok,
 
        /* Parse through to the first unescaped space. */
 
-       i = *pos;
        p = &buf[++(*pos)];
 
        assert(*pos > 0);