diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-03-24 15:56:35 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2024-02-09 10:29:18 -0300 |
commit | 26815d21b8a4775ea6123f6197caa04bae4c4595 (patch) | |
tree | 9e505e77def2a3a4e584faf3584255a87877b193 | |
parent | 550ea862accc27e43eaafa072e5a21cce7f51bbe (diff) | |
download | glibc-26815d21b8a4775ea6123f6197caa04bae4c4595.tar glibc-26815d21b8a4775ea6123f6197caa04bae4c4595.tar.gz glibc-26815d21b8a4775ea6123f6197caa04bae4c4595.tar.bz2 glibc-26815d21b8a4775ea6123f6197caa04bae4c4595.zip |
stdio: Suppress -Wformat only for gcc for tst-sprintf-errno.c
-rw-r--r-- | stdio-common/tst-sprintf-errno.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/tst-sprintf-errno.c b/stdio-common/tst-sprintf-errno.c index e00c3fb485..2ea1fde2dc 100644 --- a/stdio-common/tst-sprintf-errno.c +++ b/stdio-common/tst-sprintf-errno.c @@ -24,7 +24,7 @@ /* GCC does not yet know about the %#m specifier. */ DIAG_PUSH_NEEDS_COMMENT; -DIAG_IGNORE_NEEDS_COMMENT (11, "-Wformat="); +DIAG_IGNORE_NEEDS_COMMENT_GCC (11, "-Wformat="); static int do_test (void) |