Fix type warnings on 64-bit machines.

This commit is contained in:
obrien 2006-06-21 09:52:37 +00:00
parent ad10a899ae
commit 101bc06b44

View File

@ -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");
}