Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/config Fix previous.



details:   https://anonhg.NetBSD.org/src/rev/f19d0565b7d9
branches:  trunk
changeset: 340434:f19d0565b7d9
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Fri Sep 04 21:32:54 2015 +0000

description:
Fix previous.

diffstat:

 usr.bin/config/files.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r fc69441867a7 -r f19d0565b7d9 usr.bin/config/files.c
--- a/usr.bin/config/files.c    Fri Sep 04 17:59:53 2015 +0000
+++ b/usr.bin/config/files.c    Fri Sep 04 21:32:54 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: files.c,v 1.34 2015/09/04 15:50:48 uebayasi Exp $      */
+/*     $NetBSD: files.c,v 1.35 2015/09/04 21:32:54 uebayasi Exp $      */
 
 /*
  * Copyright (c) 1992, 1993
@@ -45,7 +45,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: files.c,v 1.34 2015/09/04 15:50:48 uebayasi Exp $");
+__RCSID("$NetBSD: files.c,v 1.35 2015/09/04 21:32:54 uebayasi Exp $");
 
 #include <sys/param.h>
 #include <assert.h>
@@ -374,7 +374,7 @@
 
        /* Order files. */
        selfiles = malloc(nselfiles * sizeof(fi));
-       int i = 0;
+       unsigned i = 0;
        TAILQ_FOREACH(fi, &allfiles, fi_next) {
                if ((fi->fi_flags & FI_SEL) == 0)
                        continue;



Home | Main Index | Thread Index | Old Index