diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-29 22:34:47 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-29 22:34:47 +0000 |
commit | d409c3a2f787dd2276d242d70e03b25e33436cea (patch) | |
tree | adec7d9142ff4899bb9d0319bbbd5822359fbc0b /coreutils | |
parent | abaef6565e03b03fb750c7935737fd0309395729 (diff) | |
download | busybox-d409c3a2f787dd2276d242d70e03b25e33436cea.tar.gz |
- Rich Felker writes: fix invalid printf format strings
http://busybox.net/lists/busybox/2006-March/019568.html
text data bss dec hex filename
900619 10316 1038724 1949659 1dbfdb busybox.oorig
900603 10316 1038724 1949643 1dbfcb busybox
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/stat.c b/coreutils/stat.c index c845a2aa7..36e0dadf3 100644 --- a/coreutils/stat.c +++ b/coreutils/stat.c @@ -400,7 +400,7 @@ static int do_statfs(char const *filename, char const *format) #else format = (flags & OPT_TERSE - ? "%s %Lx %lu " + ? "%s %llx %lu " : " File: \"%s\"\n" " ID: %-8Lx Namelen: %-7lu "); printf(format, |