mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
With printf(), use PRIu64 with a cast to uint64_t instead
of %zu, because some pre-C99 libc versions don't support %zu.
This commit is contained in:
parent
4e7e54c4c5
commit
c15a7abf66
2 changed files with 11 additions and 8 deletions
|
@ -140,13 +140,14 @@ These aren't implemented yet.
|
|||
if (mem_limit == 0)
|
||||
mem_limit = 1;
|
||||
|
||||
// We use PRIu64 instead of %zu to support pre-C99 libc.
|
||||
puts(_("On this system and configuration, the tool will use"));
|
||||
printf(_(" * roughly %zu MiB of memory at maximum; and\n"),
|
||||
mem_limit);
|
||||
printf(N_(
|
||||
" * at maximum of one thread for (de)compression.\n\n",
|
||||
" * at maximum of %zu threads for (de)compression.\n\n",
|
||||
opt_threads), opt_threads);
|
||||
printf(_(" * roughly %" PRIu64 " MiB of memory at maximum; and\n"),
|
||||
(uint64_t)(mem_limit));
|
||||
printf(N_(" * at maximum of one thread for (de)compression.\n\n",
|
||||
" * at maximum of %" PRIu64
|
||||
" threads for (de)compression.\n\n",
|
||||
(uint64_t)(opt_threads)), (uint64_t)(opt_threads));
|
||||
|
||||
printf(_("Report bugs to <%s> (in English or Finnish).\n"),
|
||||
PACKAGE_BUGREPORT);
|
||||
|
|
|
@ -108,10 +108,12 @@ help(void)
|
|||
"\n"
|
||||
"With no FILE, or when FILE is -, read standard input.\n"
|
||||
"\n"
|
||||
"On this configuration, the tool will use about %zu MiB of memory at maximum.\n"
|
||||
"On this configuration, the tool will use about %" PRIu64
|
||||
" MiB of memory at maximum.\n"
|
||||
"\n"
|
||||
"Report bugs to <" PACKAGE_BUGREPORT "> (in English or Finnish).\n",
|
||||
argv0, (mem_limit + 512 * 1024) / (1024 * 1024));
|
||||
argv0, (uint64_t)((mem_limit + 512 * 1024) / (1024 * 1024)));
|
||||
// Using PRIu64 above instead of %zu to support pre-C99 libc.
|
||||
exit(0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue