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 /string | |
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 'string')
-rw-r--r-- | string/tester.c | 2 | ||||
-rw-r--r-- | string/tst-strlen.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/string/tester.c b/string/tester.c index 5a397055b1..eed76239f5 100644 --- a/string/tester.c +++ b/string/tester.c @@ -1647,7 +1647,7 @@ main (void) else { status = EXIT_FAILURE; - printf("%Zd errors.\n", errors); + printf("%zd errors.\n", errors); } return status; diff --git a/string/tst-strlen.c b/string/tst-strlen.c index 15fbc8bd7b..5ec411c0df 100644 --- a/string/tst-strlen.c +++ b/string/tst-strlen.c @@ -34,7 +34,7 @@ do_test (void) if (strlen (buf) != words * 4 + lens[last]) { printf ("\ -strlen failed for base=%Zu, words=%Zu, and last=%Zu (is %zd, expected %zd)\n", +strlen failed for base=%zu, words=%zu, and last=%zu (is %zd, expected %zd)\n", base, words, last, strlen (buf), words * 4 + lens[last]); return 1; @@ -43,7 +43,7 @@ strlen failed for base=%Zu, words=%Zu, and last=%Zu (is %zd, expected %zd)\n", if (strnlen (buf, -1) != words * 4 + lens[last]) { printf ("\ -strnlen failed for base=%Zu, words=%Zu, and last=%Zu (is %zd, expected %zd)\n", +strnlen failed for base=%zu, words=%zu, and last=%zu (is %zd, expected %zd)\n", base, words, last, strnlen (buf, -1), words * 4 + lens[last]); return 1; |