diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-02-05 09:12:57 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-02-05 09:12:57 +0200 |
commit | 75905a9afc0ee89954ede7d08af70d1148bf0fd9 (patch) | |
tree | fc562f9890c63c4fa7087537941165393155af14 /src/xz/util.c | |
parent | Another utime() fix. (diff) | |
download | xz-75905a9afc0ee89954ede7d08af70d1148bf0fd9.tar.xz |
Various code cleanups the the xz command line tool.
It now builds with MinGW.
Diffstat (limited to '')
-rw-r--r-- | src/xz/util.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/xz/util.c b/src/xz/util.c index 13b67925..e1716bcb 100644 --- a/src/xz/util.c +++ b/src/xz/util.c @@ -116,9 +116,8 @@ str_to_uint64(const char *name, const char *value, uint64_t min, uint64_t max) error: message_fatal(_("Value of the option `%s' must be in the range " - "[%llu, %llu]"), name, - (unsigned long long)(min), - (unsigned long long)(max)); + "[%" PRIu64 ", %" PRIu64 "]"), + name, min, max); } |