From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (kristaps@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.5/8.14.5) with ESMTP id q58AXm8m023475 for ; Fri, 8 Jun 2012 06:33:48 -0400 (EDT) Received: (from kristaps@localhost) by krisdoz.my.domain (8.14.5/8.14.3/Submit) id q58AXmuH009825; Fri, 8 Jun 2012 06:33:48 -0400 (EDT) Date: Fri, 8 Jun 2012 06:33:48 -0400 (EDT) Message-Id: <201206081033.q58AXmuH009825@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: kristaps@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: Use size_t in catman to match manpath.h. X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Use size_t in catman to match manpath.h. Note this file will not be connected to the build for a little while as I get the new sqlite3 stuff in. Modified Files: -------------- mdocml: catman.c Revision Data ------------- Index: catman.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/catman.c,v retrieving revision 1.10 retrieving revision 1.11 diff -Lcatman.c -Lcatman.c -u -p -r1.10 -r1.11 --- catman.c +++ catman.c @@ -380,7 +380,8 @@ manup(const struct manpaths *dirs, char char dst[MAXPATHLEN], src[MAXPATHLEN]; const char *path; - int i, c; + size_t i; + int c; size_t sz; FILE *f; -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv