Module Name: src
Committed By: mlelstv
Date: Thu Dec 20 18:58:38 UTC 2012
Modified Files:
src/usr.sbin/mtree: mtree.c
Log Message:
joerg@: just use unsigned int please
To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 src/usr.sbin/mtree/mtree.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/mtree/mtree.c
diff -u src/usr.sbin/mtree/mtree.c:1.44 src/usr.sbin/mtree/mtree.c:1.45
--- src/usr.sbin/mtree/mtree.c:1.44 Thu Dec 20 16:43:16 2012
+++ src/usr.sbin/mtree/mtree.c Thu Dec 20 18:58:37 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: mtree.c,v 1.44 2012/12/20 16:43:16 christos Exp $ */
+/* $NetBSD: mtree.c,v 1.45 2012/12/20 18:58:37 mlelstv Exp $ */
/*-
* Copyright (c) 1989, 1990, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 19
#if 0
static char sccsid[] = "@(#)mtree.c 8.1 (Berkeley) 6/6/93";
#else
-__RCSID("$NetBSD: mtree.c,v 1.44 2012/12/20 16:43:16 christos Exp $");
+__RCSID("$NetBSD: mtree.c,v 1.45 2012/12/20 18:58:37 mlelstv Exp $");
#endif
#endif /* not lint */
@@ -79,7 +79,7 @@ int
main(int argc, char **argv)
{
int ch, status;
- uint i;
+ unsigned int i;
char *dir, *p;
FILE *spec1, *spec2;
@@ -311,7 +311,7 @@ main(int argc, char **argv)
static void
usage(void)
{
- uint i;
+ unsigned int i;
fprintf(stderr,
"usage: %s [-bCcDdejLlMnPqrStUuWx] [-i|-m] [-E tags]\n"