summaryrefslogtreecommitdiff
path: root/lib/libc/gen
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-06-27 22:21:29 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-06-27 22:21:29 +0000
commit63d8053e95a16d73b351d40c774d440ba2e57099 (patch)
treea90acaa5196c4166239035bc797909ad7576e1bb /lib/libc/gen
parent5955123a134cb6c860a5327716fa14b8b1ae5ac1 (diff)
%u
Diffstat (limited to 'lib/libc/gen')
-rw-r--r--lib/libc/gen/fts.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/fts.c b/lib/libc/gen/fts.c
index 90828ba3b19..079b4e806c9 100644
--- a/lib/libc/gen/fts.c
+++ b/lib/libc/gen/fts.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fts.c,v 1.30 2002/02/16 21:27:22 millert Exp $ */
+/* $OpenBSD: fts.c,v 1.31 2002/06/27 22:21:28 deraadt Exp $ */
/*-
* Copyright (c) 1990, 1993, 1994
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)fts.c 8.6 (Berkeley) 8/14/94";
#else
-static char rcsid[] = "$OpenBSD: fts.c,v 1.30 2002/02/16 21:27:22 millert Exp $";
+static char rcsid[] = "$OpenBSD: fts.c,v 1.31 2002/06/27 22:21:28 deraadt Exp $";
#endif
#endif /* LIBC_SCCS and not lint */
@@ -612,7 +612,7 @@ fts_build(sp, type)
}
#ifdef notdef
- (void)printf("nlinks == %d (cur: %d)\n", nlinks, cur->fts_nlink);
+ (void)printf("nlinks == %d (cur: %u)\n", nlinks, cur->fts_nlink);
(void)printf("NOSTAT %d PHYSICAL %d SEEDOT %d\n",
ISSET(FTS_NOSTAT), ISSET(FTS_PHYSICAL), ISSET(FTS_SEEDOT));
#endif