From 48ecc1efc2e86d04c43e7e06a0a5226aa4917f08 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Wed, 21 Jun 2006 09:52:37 +0000 Subject: [PATCH] Fix type warnings on 64-bit machines. --- tools/tools/ipw/ipwstats.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/tools/ipw/ipwstats.c b/tools/tools/ipw/ipwstats.c index 01d857a0053..3146d12ad47 100644 --- a/tools/tools/ipw/ipwstats.c +++ b/tools/tools/ipw/ipwstats.c @@ -260,17 +260,17 @@ get_statistics(const char *iface) printf("%-60s[", stat->desc); switch (stat->unit) { case INT: - printf("%lu", stats[stat->index]); + printf("%u", stats[stat->index]); break; case BOOL: printf(stats[stat->index] ? "true" : "false"); break; case PERCENTAGE: - printf("%lu%%", stats[stat->index]); + printf("%u%%", stats[stat->index]); break; case HEX: default: - printf("0x%08lX", stats[stat->index]); + printf("0x%08X", stats[stat->index]); } printf("]\n"); }