Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/mtree joerg@: just use unsigned int please



details:   https://anonhg.NetBSD.org/src/rev/f7da1cb147ba
branches:  trunk
changeset: 783433:f7da1cb147ba
user:      mlelstv <mlelstv%NetBSD.org@localhost>
date:      Thu Dec 20 18:58:37 2012 +0000

description:
joerg@: just use unsigned int please

diffstat:

 usr.sbin/mtree/mtree.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 266657ffbbd0 -r f7da1cb147ba usr.sbin/mtree/mtree.c
--- a/usr.sbin/mtree/mtree.c    Thu Dec 20 16:43:16 2012 +0000
+++ b/usr.sbin/mtree/mtree.c    Thu Dec 20 18:58:37 2012 +0000
@@ -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 @@
 #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 @@
 main(int argc, char **argv)
 {
        int     ch, status;
-       uint    i;
+       unsigned int    i;
        char    *dir, *p;
        FILE    *spec1, *spec2;
 
@@ -311,7 +311,7 @@
 static void
 usage(void)
 {
-       uint i;
+       unsigned int i;
 
        fprintf(stderr,
            "usage: %s [-bCcDdejLlMnPqrStUuWx] [-i|-m] [-E tags]\n"



Home | Main Index | Thread Index | Old Index