public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/azanella/clang] localedata: Fix clang warnings
@ 2022-03-15 18:42 Adhemerval Zanella
0 siblings, 0 replies; only message in thread
From: Adhemerval Zanella @ 2022-03-15 18:42 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=4f5deb6a8316e965f0aa40f87a271902f6699050
commit 4f5deb6a8316e965f0aa40f87a271902f6699050
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Tue Mar 15 15:29:47 2022 -0300
localedata: Fix clang warnings
clang does not support 'I' specifier and handles it as a 'length
modifier'.
Diff:
---
localedata/tst-trans.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/localedata/tst-trans.c b/localedata/tst-trans.c
index c97c44aaeb..99b63016f0 100644
--- a/localedata/tst-trans.c
+++ b/localedata/tst-trans.c
@@ -22,6 +22,7 @@
#include <string.h>
#include <wchar.h>
#include <wctype.h>
+#include <libc-diag.h>
static int
do_test (void)
@@ -59,7 +60,12 @@ do_test (void)
errors |= len != 10;
printf ("len = %d, wbuf = L\"%ls\"\n", len, wbuf);
- snprintf (buf, sizeof buf, "%Id", 0x499602D2);
+ /* clang does not support 'I' specifier and handles it as a 'length
+ * modifier'. */
+ DIAG_PUSH_NEEDS_COMMENT_CLANG;
+ DIAG_IGNORE_NEEDS_COMMENT_CLANG (13, "-Wformat");
+ snprintf (buf, sizeof buf, "%Id", 0x499602D2U);
+ DIAG_POP_NEEDS_COMMENT_CLANG;
errors |= strcmp (buf, "bcdefghija") != 0;
len = strlen (buf);
errors |= len != 10;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-03-15 18:42 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-15 18:42 [glibc/azanella/clang] localedata: Fix clang warnings Adhemerval Zanella
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).