]> git.cameronkatri.com Git - mandoc.git/commitdiff
Use size_t in catman to match manpath.h.
authorKristaps Dzonsons <kristaps@bsd.lv>
Fri, 8 Jun 2012 10:33:48 +0000 (10:33 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Fri, 8 Jun 2012 10:33:48 +0000 (10:33 +0000)
Note this file will not be connected to the build for a little while as
I get the new sqlite3 stuff in.

catman.c

index 1d313ea6e00e721d5cf5e728f4f047cec5281190..c755d27057d2f849d54f9d7bbef1d0c1bdb365a8 100644 (file)
--- a/catman.c
+++ b/catman.c
@@ -1,4 +1,4 @@
-/*     $Id: catman.c,v 1.10 2012/01/03 15:17:20 kristaps Exp $ */
+/*     $Id: catman.c,v 1.11 2012/06/08 10:33:48 kristaps Exp $ */
 /*
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -380,7 +380,8 @@ manup(const struct manpaths *dirs, char *base)
        char             dst[MAXPATHLEN],
                         src[MAXPATHLEN];
        const char      *path;
-       int              i, c;
+       size_t           i;
+       int              c;
        size_t           sz;
        FILE            *f;