Module Name: src
Committed By: he
Date: Thu Aug 20 08:12:05 UTC 2009
Modified Files:
src/dist/ipf/tools: ippool.c
Log Message:
The type of iplf_count is u_int, not size_t, so print with %u, not %zu.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/dist/ipf/tools/ippool.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/dist/ipf/tools/ippool.c
diff -u src/dist/ipf/tools/ippool.c:1.6 src/dist/ipf/tools/ippool.c:1.7
--- src/dist/ipf/tools/ippool.c:1.6 Tue May 20 07:08:07 2008
+++ src/dist/ipf/tools/ippool.c Thu Aug 20 08:12:05 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: ippool.c,v 1.6 2008/05/20 07:08:07 darrenr Exp $ */
+/* $NetBSD: ippool.c,v 1.7 2009/08/20 08:12:05 he Exp $ */
/*
* Copyright (C) 2002-2006 by Darren Reed.
@@ -499,7 +499,7 @@
}
}
- printf("%zu object%s flushed\n", flush.iplf_count,
+ printf("%u object%s flushed\n", flush.iplf_count,
(flush.iplf_count == 1) ? "" : "s");
return 0;