]> git.cameronkatri.com Git - mandoc.git/commitdiff
Lint fixes.
authorKristaps Dzonsons <kristaps@bsd.lv>
Wed, 17 Jun 2009 14:10:09 +0000 (14:10 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Wed, 17 Jun 2009 14:10:09 +0000 (14:10 +0000)
mdoc_action.c
mdoc_argv.c
mdoc_validate.c

index bcfe939a31dbb59606bbf2fd11d781a2ac4e32cd..da66e73920c0038869276c475326f1083f265e53 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_action.c,v 1.14 2009/06/17 14:08:47 kristaps Exp $ */
+/*     $Id: mdoc_action.c,v 1.15 2009/06/17 14:10:09 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -666,8 +666,8 @@ post_bl_head(POST_ARGS)
        for (i = 0, nn = m->last->child; nn; nn = nn->next, i++)
                /* Count children. */;
 
-       n->args->argv[c].sz = i;
-       n->args->argv[c].value = malloc(i * sizeof(char *));
+       n->args->argv[c].sz = (size_t)i;
+       n->args->argv[c].value = malloc((size_t)i * sizeof(char *));
 
        for (i = 0, nn = m->last->child; nn; i++) {
                n->args->argv[c].value[i] = nn->string;
index 833682ebef86cb054ac81279b56fa0cd1eef8e4e..d873f048f21b44e17b3a76973f2a658c269dc29f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_argv.c,v 1.7 2009/06/17 14:08:47 kristaps Exp $ */
+/*     $Id: mdoc_argv.c,v 1.8 2009/06/17 14:10:09 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -756,11 +756,9 @@ static int
 argv_multi(struct mdoc *mdoc, int line, 
                struct mdoc_argv *v, int *pos, char *buf)
 {
-       int              c, ppos;
+       int              c;
        char            *p;
 
-       ppos = *pos;
-
        for (v->sz = 0; ; v->sz++) {
                if ('-' == buf[*pos])
                        break;
index 3111f8642dffc7c04eb5c4c359a886875eb65c5b..71b9ff27f1fcb402b1d37f0fce33540fb0ec52fa 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_validate.c,v 1.14 2009/06/17 14:08:47 kristaps Exp $ */
+/*     $Id: mdoc_validate.c,v 1.15 2009/06/17 14:10:09 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -802,7 +802,7 @@ pre_display(PRE_ARGS)
 static int
 pre_bl(PRE_ARGS)
 {
-       int              pos, col, type, width, offset;
+       int              pos, type, width, offset;
 
        if (MDOC_BLOCK != n->type)
                return(1);
@@ -811,7 +811,7 @@ pre_bl(PRE_ARGS)
 
        /* Make sure that only one type of list is specified.  */
 
-       type = offset = width = col = -1;
+       type = offset = width = -1;
 
        /* LINTED */
        for (pos = 0; pos < (int)n->args->argc; pos++)
@@ -840,7 +840,6 @@ pre_bl(PRE_ARGS)
                        if (-1 != type) 
                                return(nerr(mdoc, n, EMULTILIST));
                        type = n->args->argv[pos].arg;
-                       col = pos;
                        break;
                case (MDOC_Width):
                        if (-1 != width)