public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Adhemerval Zanella <azanella@sourceware.org>
To: glibc-cvs@sourceware.org
Subject: [glibc/azanella/clang] localedata: Fix clang warnings
Date: Tue, 15 Mar 2022 18:42:23 +0000 (GMT) [thread overview]
Message-ID: <20220315184223.945263858C83@sourceware.org> (raw)
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;
reply other threads:[~2022-03-15 18:42 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220315184223.945263858C83@sourceware.org \
--to=azanella@sourceware.org \
--cc=glibc-cvs@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).