mirror of
https://git.tukaani.org/xz.git
synced 2025-02-21 07:58:27 +00:00
Solaris' GCC can't understand that our use is fine, unlike modern compilers: ``` list.c: In function 'print_totals_basic': list.c:1191:4: error: format not a string literal, argument types not checked [-Werror=format-nonliteral] uint64_to_str(totals.files, 0)); ^~~~~~~~~~~~~ cc1: all warnings being treated as errors ``` It's presumably because of older gettext missing format attributes. This is with `gcc (GCC) 7.3.0`. (cherry picked from commit b69768c8bd1a34fde311935c551d061ba52d9a3f)