From 465874f3a31da80c3fe444a425afbb840098de1c Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Wed, 5 Apr 2006 14:57:59 +0000 Subject: - use proper macros to print intmax_t. PRIuMAX and PRIxMAX are defined in inttypes depending on the wordsize. --- coreutils/stat.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'coreutils/stat.c') diff --git a/coreutils/stat.c b/coreutils/stat.c index 36e0dadf3..30a2a625b 100644 --- a/coreutils/stat.c +++ b/coreutils/stat.c @@ -466,7 +466,7 @@ static int do_stat(char const *filename, char const *format) print_it(format, filename, print_stat, &statbuf); #else if (flags & OPT_TERSE) { - printf("%s %lu %lu %lx %lu %lu %lx %lu %lu %lx %lx %lu %lu %lu %lu\n", + printf("%s %"PRIuMAX" %"PRIuMAX" %lx %lu %lu %"PRIxMAX" %"PRIuMAX" %lu %lx %lx %lu %lu %lu %lu\n", filename, (uintmax_t) (statbuf.st_size), (uintmax_t) statbuf.st_blocks, @@ -500,8 +500,8 @@ static int do_stat(char const *filename, char const *format) else printf(" File: \"%s\"\n", filename); - printf(" Size: %-10lu\tBlocks: %-10lu IO Block: %-6lu %s\n" - "Device: %lxh/%lud\tInode: %-10lu Links: %-5lu", + printf(" Size: %-10"PRIuMAX"\tBlocks: %-10"PRIuMAX" IO Block: %-6lu %s\n" + "Device: %"PRIxMAX"h/%"PRIuMAX"d\tInode: %-10"PRIuMAX" Links: %-5lu", (uintmax_t) (statbuf.st_size), (uintmax_t) statbuf.st_blocks, (unsigned long int) statbuf.st_blksize, -- cgit v1.2.3