diff options
author | Adhemerval Zanella Netto <adhemerval.zanella@linaro.org> | 2022-09-01 10:02:30 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-09-22 08:48:04 -0300 |
commit | de477abcaaabb1f9815cb63876637a47a95e7ac1 (patch) | |
tree | 22bd98fe9a4aaa03257147db719e844fcdb42f7a /time | |
parent | 340097d0b50eff9d3058e06c6989ae398c653d4a (diff) | |
download | glibc-de477abcaaabb1f9815cb63876637a47a95e7ac1.tar.gz glibc-de477abcaaabb1f9815cb63876637a47a95e7ac1.tar.xz glibc-de477abcaaabb1f9815cb63876637a47a95e7ac1.zip |
Use '%z' instead of '%Z' on printf functions
The Z modifier is a nonstandard synonymn for z (that predates z itself) and compiler might issue an warning for in invalid conversion specifier. Reviewed-by: Florian Weimer <fweimer@redhat.com>
Diffstat (limited to 'time')
-rw-r--r-- | time/tst-strftime.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/time/tst-strftime.c b/time/tst-strftime.c index af3ff72faf..482cd16c39 100644 --- a/time/tst-strftime.c +++ b/time/tst-strftime.c @@ -102,18 +102,18 @@ do_test (void) if (res == 0) { - printf ("%Zu: %s: res == 0 despite size == %Zu\n", + printf ("%zu: %s: res == 0 despite size == %zu\n", cnt, tests[cnt].fmt, size); result = 1; } else if (size < tests[cnt].min) { - printf ("%Zu: %s: size == %Zu was enough\n", + printf ("%zu: %s: size == %zu was enough\n", cnt, tests[cnt].fmt, size); result = 1; } else - printf ("%Zu: %s: size == %Zu: OK\n", cnt, tests[cnt].fmt, size); + printf ("%zu: %s: size == %zu: OK\n", cnt, tests[cnt].fmt, size); free (buf); } |