diff --git a/tools/tools/ipw/ipwstats.c b/tools/tools/ipw/ipwstats.c index 01d857a00536..3146d12ad472 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"); }