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 /libio/tst_swprintf.c | |
parent | 340097d0b50eff9d3058e06c6989ae398c653d4a (diff) | |
download | glibc-de477abcaaabb1f9815cb63876637a47a95e7ac1.zip glibc-de477abcaaabb1f9815cb63876637a47a95e7ac1.tar.gz glibc-de477abcaaabb1f9815cb63876637a47a95e7ac1.tar.bz2 |
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 'libio/tst_swprintf.c')
-rw-r--r-- | libio/tst_swprintf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libio/tst_swprintf.c b/libio/tst_swprintf.c index 8a2ffe6..1f997b9 100644 --- a/libio/tst_swprintf.c +++ b/libio/tst_swprintf.c @@ -42,18 +42,18 @@ do_test (void) if (tests[n].exp < 0 && res >= 0) { support_record_failure (); - printf ("swprintf (buf, %Zu, L\"%%s\", \"%s\") expected to fail\n", + printf ("swprintf (buf, %zu, L\"%%s\", \"%s\") expected to fail\n", tests[n].n, tests[n].str); } else if (tests[n].exp >= 0 && tests[n].exp != res) { support_record_failure (); printf ("\ -swprintf (buf, %Zu, L\"%%s\", \"%s\") expected to return %Zd, but got %Zd\n", +swprintf (buf, %zu, L\"%%s\", \"%s\") expected to return %zd, but got %zd\n", tests[n].n, tests[n].str, tests[n].exp, res); } else - printf ("swprintf (buf, %Zu, L\"%%s\", \"%s\") OK\n", + printf ("swprintf (buf, %zu, L\"%%s\", \"%s\") OK\n", tests[n].n, tests[n].str); } |