Here's a concrete counter-proposal. I started with the warnings that
GNU gettext's m4/more-warnings.m4 enables for gcc 13:

WARN_CPPFLAGS_GCC13="-fanalyzer -Wall -Warith-conversion -Wcast-align=strict 
-Wdate-time -Wdisabled-optimization -Wdouble-promotion -Wduplicated-branches 
-Wduplicated-cond -Wextra -Wformat-signedness -Winit-self -Winvalid-pch 
-Wlogical-op -Wmissing-include-dirs -Wnested-externs -Wnull-dereference 
-Wopenmp-simd -Woverlength-strings -Wpacked -Wpointer-arith -Wstrict-overflow 
-Wsuggest-attribute=format -Wsuggest-final-methods -Wsuggest-final-types 
-Wsync-nand -Wsystem-headers -Wtrampolines -Wuninitialized -Wunknown-pragmas 
-Wunsafe-loop-optimizations -Wvariadic-macros -Wvector-operation-performance 
-Wwrite-strings -Warray-bounds=2 -Wattribute-alias=2 -Wformat-overflow=2 
-Wformat=2 -Wformat-truncation=2 -Wimplicit-fallthrough=5 -Wshift-overflow=2 
-Wunused-const-variable=2 -Wvla-larger-than=4031 -Wno-analyzer-malloc-leak 
-Wno-empty-body -Wno-analyzer-double-fclose -Wno-analyzer-double-free 
-Wno-analyzer-null-argument -Wno-analyzer-null-dereference -Wno-cast-align 
-Wno-format-nonliteral -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter 
-Wno-clobbered -Wno-analyzer-use-after-free -Wno-analyzer-free-of-non-heap 
-Wshadow=local"

and compiled a testdir with that. Then sorted the warnings according to type:

$ grep warning: make.log | LC_ALL=C sort -t'[' -k2 | LC_ALL=C uniq > 
warnings.log

The following warning options are thus useful to occasionally look at
(that is, they may occasionally be helpful):

WARN_CFLAGS_GCC13="-fanalyzer -Wall -Warith-conversion -Wcast-align=strict 
-Wdate-time -Wdisabled-optimization -Wdouble-promotion -Wduplicated-branches 
-Wduplicated-cond -Wextra -Wformat-signedness -Winit-self -Winvalid-pch 
-Wlogical-op -Wmissing-include-dirs -Wnested-externs -Wnull-dereference 
-Wopenmp-simd -Woverlength-strings -Wpacked -Wpointer-arith -Wstrict-overflow 
-Wsuggest-final-methods -Wsuggest-final-types -Wsync-nand -Wsystem-headers 
-Wtrampolines -Wuninitialized -Wunknown-pragmas -Wunsafe-loop-optimizations 
-Wvariadic-macros -Wvector-operation-performance -Wwrite-strings 
-Warray-bounds=2 -Wattribute-alias=2 -Wformat-overflow=2 -Wformat=2 
-Wformat-truncation=2 -Wimplicit-fallthrough=5 -Wshift-overflow=2 
-Wunused-const-variable=2 -Wvla-larger-than=4031 -Wno-analyzer-malloc-leak 
-Wno-empty-body -Wno-analyzer-double-fclose -Wno-analyzer-double-free 
-Wno-analyzer-null-argument -Wno-analyzer-null-dereference -Wno-cast-align 
-Wno-format-nonliteral -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter 
-Wno-clobbered -Wno-analyzer-use-after-free -Wno-analyzer-free-of-non-heap 
-Wshadow=local -Wno-attribute-warning -Wno-double-promotion 
-Wno-duplicated-branches"
WARN_CXXFLAGS_GCC13="-fanalyzer -Wall -Warith-conversion -Wcast-align=strict 
-Wdate-time -Wdisabled-optimization -Wdouble-promotion -Wduplicated-branches 
-Wduplicated-cond -Wextra -Wformat-signedness -Winit-self -Winvalid-pch 
-Wlogical-op -Wmissing-include-dirs -Wnull-dereference -Wopenmp-simd 
-Woverlength-strings -Wpacked -Wpointer-arith -Wstrict-overflow 
-Wsuggest-final-methods -Wsuggest-final-types -Wsync-nand -Wsystem-headers 
-Wtrampolines -Wuninitialized -Wunknown-pragmas -Wunsafe-loop-optimizations 
-Wvariadic-macros -Wvector-operation-performance -Wwrite-strings 
-Warray-bounds=2 -Wattribute-alias=2 -Wformat-overflow=2 -Wformat=2 
-Wformat-truncation=2 -Wimplicit-fallthrough=5 -Wshift-overflow=2 
-Wunused-const-variable=2 -Wvla-larger-than=4031 -Wno-analyzer-malloc-leak 
-Wno-empty-body -Wno-analyzer-double-fclose -Wno-analyzer-double-free 
-Wno-analyzer-null-argument -Wno-analyzer-null-dereference -Wno-cast-align 
-Wno-format-nonliteral -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter 
-Wno-clobbered -Wno-analyzer-use-after-free -Wno-analyzer-free-of-non-heap 
-Wno-attribute-warning -Wno-double-promotion -Wno-duplicated-branches"

However, if the goal is to have zero warnings left in gnulib, then the
following warning options should be used:

WARN_CFLAGS_GCC13="-fanalyzer -Wall -Warith-conversion -Wcast-align=strict 
-Wdate-time -Wdisabled-optimization -Wdouble-promotion -Wduplicated-branches 
-Wduplicated-cond -Wextra -Wformat-signedness -Winit-self -Winvalid-pch 
-Wlogical-op -Wmissing-include-dirs -Wnested-externs -Wopenmp-simd 
-Woverlength-strings -Wpacked -Wpointer-arith -Wstrict-overflow 
-Wsuggest-final-methods -Wsuggest-final-types -Wsync-nand -Wsystem-headers 
-Wtrampolines -Wuninitialized -Wunknown-pragmas -Wunsafe-loop-optimizations 
-Wvariadic-macros -Wvector-operation-performance -Wwrite-strings 
-Warray-bounds=2 -Wattribute-alias=2 -Wformat-overflow=2 -Wformat-truncation=2 
-Wimplicit-fallthrough=5 -Wshift-overflow=2 -Wunused-const-variable=2 
-Wvla-larger-than=4031 -Wno-analyzer-malloc-leak -Wno-empty-body 
-Wno-analyzer-double-fclose -Wno-analyzer-double-free 
-Wno-analyzer-null-argument -Wno-analyzer-null-dereference -Wno-cast-align 
-Wno-format-nonliteral -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter 
-Wno-clobbered -Wno-analyzer-allocation-size -Wno-analyzer-fd-double-close 
-Wno-analyzer-fd-leak -Wno-analyzer-fd-use-after-close 
-Wno-analyzer-fd-use-without-check -Wno-analyzer-free-of-non-heap 
-Wno-analyzer-mismatching-deallocation -Wno-analyzer-out-of-bounds 
-Wno-analyzer-possible-null-argument -Wno-analyzer-possible-null-dereference 
-Wno-analyzer-unsafe-call-within-signal-handler -Wno-analyzer-use-after-free 
-Wno-analyzer-use-of-pointer-in-stale-stack-frame 
-Wno-analyzer-use-of-uninitialized-value -Wno-analyzer-va-arg-type-mismatch 
-Wno-attribute-warning -Wno-dangling-pointer -Wno-discarded-qualifiers 
-Wno-double-promotion -Wno-duplicated-branches -Wno-maybe-uninitialized 
-Wno-missing-field-initializers -Wno-old-style-declaration -Wno-switch 
-Wno-unused-but-set-variable -Wno-unused-function -Wno-unused-value"
WARN_CXXFLAGS_GCC13="-fanalyzer -Wall -Warith-conversion -Wcast-align=strict 
-Wdate-time -Wdisabled-optimization -Wdouble-promotion -Wduplicated-branches 
-Wduplicated-cond -Wextra -Wformat-signedness -Winit-self -Winvalid-pch 
-Wlogical-op -Wmissing-include-dirs -Wnull-dereference -Wopenmp-simd 
-Woverlength-strings -Wpacked -Wpointer-arith -Wstrict-overflow 
-Wsuggest-final-methods -Wsuggest-final-types -Wsync-nand -Wsystem-headers 
-Wtrampolines -Wuninitialized -Wunknown-pragmas -Wunsafe-loop-optimizations 
-Wvariadic-macros -Wvector-operation-performance -Wwrite-strings 
-Warray-bounds=2 -Wattribute-alias=2 -Wformat-overflow=2 -Wformat=2 
-Wformat-truncation=2 -Wimplicit-fallthrough=5 -Wshift-overflow=2 
-Wunused-const-variable=2 -Wvla-larger-than=4031 -Wno-analyzer-malloc-leak 
-Wno-empty-body -Wno-analyzer-double-fclose -Wno-analyzer-double-free 
-Wno-analyzer-null-argument -Wno-analyzer-null-dereference -Wno-cast-align 
-Wno-format-nonliteral -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter 
-Wno-clobbered -Wno-analyzer-use-after-free -Wno-analyzer-free-of-non-heap 
-Wno-attribute-warning -Wno-cpp -Wno-double-promotion -Wno-duplicated-branches 
-Wno-system-headers"

Bruno
/usr/include/x86_64-linux-gnu/sys/param.h:102: warning: "MIN" redefined
cc1plus: warning: command-line option '-Wnested-externs' is valid for C/ObjC but not for C++
test-fchdir.c:94:19: warning: 'dup2' on closed file descriptor 'new_fd' [-Wanalyzer-fd-use-after-close]
test-dup.c:34:13: warning: 'dup' on possibly invalid file descriptor '-1' [-Wanalyzer-fd-use-without-check]
test-execute-main.c:367:17: warning: 'dup2' on possibly invalid file descriptor 'fd' [-Wanalyzer-fd-use-without-check]
test-execute-main.c:427:17: warning: 'dup2' on possibly invalid file descriptor 'fd_in' [-Wanalyzer-fd-use-without-check]
test-execute-main.c:431:17: warning: 'dup2' on possibly invalid file descriptor 'fd_out' [-Wanalyzer-fd-use-without-check]
test-fchdir.c:91:19: warning: 'dup2' on possibly invalid file descriptor 'fd' [-Wanalyzer-fd-use-without-check]
test-getsockname.c:56:7: warning: 'listen' on possibly invalid file descriptor 's' [-Wanalyzer-fd-use-without-check]
test-poll.c:107:7: warning: 'listen' on possibly invalid file descriptor 's' [-Wanalyzer-fd-use-without-check]
test-posix_spawn-chdir.c:40:15: warning: 'dup' on possibly invalid file descriptor 'fd' [-Wanalyzer-fd-use-without-check]
test-posix_spawn-dup2-stdin.c:40:15: warning: 'dup' on possibly invalid file descriptor 'fd' [-Wanalyzer-fd-use-without-check]
test-posix_spawn-dup2-stdout.c:62:15: warning: 'dup' on possibly invalid file descriptor 'fd' [-Wanalyzer-fd-use-without-check]
test-posix_spawn-fchdir.c:44:15: warning: 'dup' on possibly invalid file descriptor 'fd' [-Wanalyzer-fd-use-without-check]
test-read.c:58:13: warning: 'read' on possibly invalid file descriptor '-1' [-Wanalyzer-fd-use-without-check]
test-write.c:64:13: warning: 'write' on possibly invalid file descriptor '-1' [-Wanalyzer-fd-use-without-check]
test-explicit_bzero.c:152:14: warning: dereferencing pointer '*last_stackbuf' to within stale stack frame [-Wanalyzer-use-of-pointer-in-stale-stack-frame]
test-memset_explicit.c:162:14: warning: dereferencing pointer '*last_stackbuf' to within stale stack frame [-Wanalyzer-use-of-pointer-in-stale-stack-frame]
argp-help.c:1505:25: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
argp-help.c:1599:18: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
argp-namefrob.h:88:22: warning: call to 'strcasecmp' declared with attribute warning: strcasecmp cannot work correctly on character strings in multibyte locales - use mbscasecmp if you care about internationalization, or use c_strcasecmp , gnulib module c-strcase) if you want a locale independent function [-Wattribute-warning]
argp-parse.c:730:27: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
c-strtod.c:58:22: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
canonicalize.c:425:35: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
chdir-long.c:129:23: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
chdir-long.c:89:20: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
dfa.c:4062:19: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
dfa.c:4070:17: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
dfa.c:4446:40: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
exclude.c:344:15: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
exclude.c:418:25: warning: call to 'strrchr' declared with attribute warning: strrchr cannot work correctly on character strings in some multibyte locales - use mbsrchr if you care about internationalization [-Wattribute-warning]
exclude.c:430:15: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
findprog.c:54:7: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
fts.c:566:19: warning: call to 'strrchr' declared with attribute warning: strrchr cannot work correctly on character strings in some multibyte locales - use mbsrchr if you care about internationalization [-Wattribute-warning]
get_ppid_of.c:112:19: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
get_progname_of.c:107:17: warning: call to 'strrchr' declared with attribute warning: strrchr cannot work correctly on character strings in some multibyte locales - use mbsrchr if you care about internationalization [-Wattribute-warning]
getopt.c:316:14: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
getopt.c:592:33: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
getopt.c:612:24: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
glob.c:1111:21: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
glob.c:360:17: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
glob.c:489:14: warning: call to 'strrchr' declared with attribute warning: strrchr cannot work correctly on character strings in some multibyte locales - use mbsrchr if you care about internationalization [-Wattribute-warning]
glob.c:753:28: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
glob.c:762:30: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
javacomp.c:421:17: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
mbschr.c:52:12: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
mbscspn.c:72:12: warning: call to 'strcspn' declared with attribute warning: strcspn cannot work correctly on character strings in multibyte locales - use mbscspn if you care about internationalization [-Wattribute-warning]
mbspbrk.c:67:12: warning: call to 'strpbrk' declared with attribute warning: strpbrk cannot work correctly on character strings in multibyte locales - use mbspbrk if you care about internationalization [-Wattribute-warning]
mbsrchr.c:51:12: warning: call to 'strrchr' declared with attribute warning: strrchr cannot work correctly on character strings in some multibyte locales - use mbsrchr if you care about internationalization [-Wattribute-warning]
mbssep.c:61:12: warning: call to 'strsep' declared with attribute warning: strsep cannot work correctly on character strings in multibyte locales - use mbssep if you care about internationalization [-Wattribute-warning]
mbsspn.c:95:12: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
mbstok_r.c:65:12: warning: call to 'strtok_r' declared with attribute warning: strtok_r cannot work correctly on character strings in multibyte locales - use mbstok_r if you care about internationalization [-Wattribute-warning]
parse-duration.c:175:8: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
parse-duration.c:223:16: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
parse-duration.c:230:8: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
parse-duration.c:237:8: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
parse-duration.c:244:8: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
parse-duration.c:272:8: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
parse-duration.c:321:16: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
parse-duration.c:328:8: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
parse-duration.c:335:8: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
parse-duration.c:363:8: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
parse-duration.c:372:17: warning: call to 'strpbrk' declared with attribute warning: strpbrk cannot work correctly on character strings in multibyte locales - use mbspbrk if you care about internationalization [-Wattribute-warning]
parse-duration.c:423:8: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
parse-duration.c:434:8: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
parse-duration.c:443:17: warning: call to 'strpbrk' declared with attribute warning: strpbrk cannot work correctly on character strings in multibyte locales - use mbspbrk if you care about internationalization [-Wattribute-warning]
posixtm.c:102:13: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
progname.c:59:11: warning: call to 'strrchr' declared with attribute warning: strrchr cannot work correctly on character strings in some multibyte locales - use mbsrchr if you care about internationalization [-Wattribute-warning]
propername.c:220:17: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
regex-quote.c:147:18: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
regex-quote.c:158:15: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
regex-quote.c:182:18: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
regex-quote.c:194:15: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
tempname.c:230:10: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-duplocale.c:130:3: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-duplocale.c:131:3: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-duplocale.c:132:3: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-duplocale.c:177:12: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-duplocale.c:209:3: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-duplocale.c:210:3: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-duplocale.c:83:15: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-fseeko3.c:37:19: warning: call to 'ftell' declared with attribute warning: ftell cannot handle files larger than 4 GB on 32-bit platforms - use ftello function for handling of large files [-Wattribute-warning]
test-fseeko3.c:44:17: warning: call to 'ftell' declared with attribute warning: ftell cannot handle files larger than 4 GB on 32-bit platforms - use ftello function for handling of large files [-Wattribute-warning]
test-fseeko4.c:38:13: warning: call to 'ftell' declared with attribute warning: ftell cannot handle files larger than 4 GB on 32-bit platforms - use ftello function for handling of large files [-Wattribute-warning]
test-fseeko4.c:40:13: warning: call to 'ftell' declared with attribute warning: ftell cannot handle files larger than 4 GB on 32-bit platforms - use ftello function for handling of large files [-Wattribute-warning]
test-hash.c:73:19: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-localename.c:215:23: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-localename.c:224:9: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-localename.c:236:24: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-localename.c:239:31: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-localename.c:241:15: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-localename.c:257:17: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-localename.c:281:23: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-localename.c:292:9: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-localename.c:304:24: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-localename.c:307:31: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-localename.c:309:15: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-localename.c:326:17: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-localename.c:453:27: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-localename.c:466:13: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-localename.c:485:31: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-localename.c:496:13: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-localename.c:654:23: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-localename.c:666:9: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-localename.c:768:23: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-localename.c:780:9: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-localename.c:803:23: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-localename.c:809:9: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-nl_langinfo2.c:73:32: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-posix_spawn-inherit0.c:68:22: warning: call to 'rpl_fseek' declared with attribute warning: fseek cannot handle files larger than 4 GB on 32-bit platforms - use fseeko function for handling of large files [-Wattribute-warning]
test-posix_spawn-inherit1.c:55:22: warning: call to 'rpl_fseek' declared with attribute warning: fseek cannot handle files larger than 4 GB on 32-bit platforms - use fseeko function for handling of large files [-Wattribute-warning]
test-sh-quote.c:160:11: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
test-snprintf-posix.h:1266:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-snprintf-posix.h:1744:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-snprintf-posix.h:2091:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-snprintf-posix.h:2364:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-snprintf-posix.h:2697:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-snprintf-posix.h:395:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-snprintf-posix.h:721:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-snprintf-posix.h:952:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-sprintf-posix.h:1252:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-sprintf-posix.h:1730:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-sprintf-posix.h:2077:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-sprintf-posix.h:2350:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-sprintf-posix.h:2683:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-sprintf-posix.h:381:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-sprintf-posix.h:707:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-sprintf-posix.h:938:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-strerror_r.c:120:21: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-strfmon_l.c:45:11: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-strfmon_l.c:74:11: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-strfmon_l.c:77:5: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-strfmon_l.c:87:11: warning: call to 'newlocale' declared with attribute warning: newlocale is not portable [-Wattribute-warning]
test-strfmon_l.c:90:5: warning: call to 'freelocale' declared with attribute warning: freelocale is not portable [-Wattribute-warning]
test-system-quote-main.c:300:11: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
test-userspec.c:179:25: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
test-vasnprintf-posix.c:1226:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasnprintf-posix.c:1630:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasnprintf-posix.c:2258:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasnprintf-posix.c:2694:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasnprintf-posix.c:3039:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasnprintf-posix.c:3465:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasnprintf-posix.c:507:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasnprintf-posix.c:935:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasprintf-posix.c:1207:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasprintf-posix.c:1611:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasprintf-posix.c:2239:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasprintf-posix.c:2679:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasprintf-posix.c:3024:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasprintf-posix.c:3450:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasprintf-posix.c:488:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
test-vasprintf-posix.c:916:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
unigbrk/test-uc-grapheme-breaks.c:132:17: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
unigbrk/test-uc-grapheme-breaks.c:135:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
unigbrk/test-uc-grapheme-breaks.c:142:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
unigbrk/test-uc-grapheme-breaks.c:160:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
unigbrk/test-uc-grapheme-breaks.c:179:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
unigbrk/test-uc-is-grapheme-break.c:101:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
unigbrk/test-uc-is-grapheme-break.c:115:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
unigbrk/test-uc-is-grapheme-break.c:133:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
unigbrk/test-uc-is-grapheme-break.c:190:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
unigbrk/test-uc-is-grapheme-break.c:98:17: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
uniname/test-uninames.c:136:17: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
uniname/test-uninames.c:139:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
uniname/test-uninames.c:145:11: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
uniname/test-uninames.c:155:11: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
uniname/test-uninames.c:70:17: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
uniname/test-uninames.c:73:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
uniname/test-uninames.c:77:11: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
uniname/test-uninames.c:89:11: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
uniwbrk/test-uc-wordbreaks.c:105:17: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
uniwbrk/test-uc-wordbreaks.c:108:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
uniwbrk/test-uc-wordbreaks.c:115:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
uniwbrk/test-uc-wordbreaks.c:133:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
uniwbrk/test-uc-wordbreaks.c:151:16: warning: call to 'strspn' declared with attribute warning: strspn cannot work correctly on character strings in multibyte locales - use mbsspn if you care about internationalization [-Wattribute-warning]
userspec.c:261:29: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
userspec.c:274:25: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
xstrtol.c:108:36: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
xstrtol.c:135:12: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
xstrtol.c:153:15: warning: call to 'strchr' declared with attribute warning: strchr cannot work correctly on character strings in some multibyte locales - use mbschr if you care about internationalization [-Wattribute-warning]
test-math-c++.cc:386:4: warning: #warning "isfinite should not be a macro in C++" [-Wcpp]
test-math-c++.cc:395:4: warning: #warning "isinf should not be a macro in C++" [-Wcpp]
test-math-c++.cc:404:4: warning: #warning "isnan should not be a macro in C++" [-Wcpp]
test-math-c++.cc:413:4: warning: #warning "signbit should not be a macro in C++" [-Wcpp]
test-argp.c:465:24: warning: storing the address of local variable 'group1_children' in 'group1_argp.children' [-Wdangling-pointer=]
test-argp.c:469:24: warning: storing the address of local variable 'group2_children' in 'group2_argp.children' [-Wdangling-pointer=]
test-argp.c:474:22: warning: storing the address of local variable 'argp_children' in 'test_argp.children' [-Wdangling-pointer=]
test-explicit_bzero.c:143:22: warning: storing the address of local variable 'stackbuf' in '*last_stackbuf' [-Wdangling-pointer=]
test-memset_explicit.c:153:22: warning: storing the address of local variable 'stackbuf' in '*last_stackbuf' [-Wdangling-pointer=]
test-argp.c:258:15: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:292:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:302:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:323:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:330:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:330:28: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:337:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:344:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:344:29: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:378:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:385:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:385:24: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:392:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:399:19: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:399:33: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:406:19: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:413:19: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:413:31: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:413:49: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:420:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:430:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:440:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-argp.c:440:24: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-hmac-md5.c:41:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-hmac-md5.c:43:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-hmac-md5.c:46:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-hmac-sha1.c:39:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-hmac-sha1.c:41:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-hmac-sha1.c:44:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-hmac-sha256.c:39:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-hmac-sha256.c:41:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-hmac-sha256.c:44:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-hmac-sha512.c:39:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-hmac-sha512.c:41:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-hmac-sha512.c:44:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-md2.c:41:16: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-md2.c:44:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-md5.c:41:16: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-md5.c:44:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-sha1.c:39:16: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-sha1.c:41:20: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-sha256.c:39:16: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-sha256.c:42:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-sha512.c:39:16: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-gc-sha512.c:42:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-md5.c:62:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-md5.c:65:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-md5.c:70:17: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-md5.c:72:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-md5.c:75:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-md5.c:87:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-md5.c:95:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-md5.c:98:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha1.c:60:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha1.c:63:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha1.c:69:17: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha1.c:71:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha1.c:74:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha1.c:87:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha1.c:96:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha1.c:99:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha256.c:60:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha256.c:63:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha256.c:69:17: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha256.c:71:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha256.c:74:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha256.c:87:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha256.c:96:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha256.c:99:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha512.c:102:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha512.c:105:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha512.c:60:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha512.c:63:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha512.c:71:17: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha512.c:73:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha512.c:76:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-hmac-sha512.c:91:7: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-posix_spawn-inherit0.c:34:32: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-posix_spawn-inherit0.c:41:45: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-posix_spawn-inherit1.c:34:32: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-posix_spawn-inherit1.c:41:45: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-posix_spawn-open1.c:40:32: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-posix_spawn-open1.c:53:45: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-posix_spawn-open2.c:34:32: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-posix_spawn-open2.c:41:45: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc-quotearg.c:32:48: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:108:62: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:109:62: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:110:62: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:111:62: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:169:63: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:175:67: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:176:66: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:177:66: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:178:66: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:39:48: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:73:64: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:74:65: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:82:62: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:83:62: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-string-desc.c:84:63: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-xstring-desc.c:33:48: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-xstring-desc.c:67:57: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-xstring-desc.c:68:56: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-xstring-desc.c:69:56: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
test-xstring-desc.c:70:56: warning: passing argument 2 of 'string_desc_new_addr' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/bits/basic_string.h:4234:50: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/bits/basic_string.h:4346:52: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/bessel_function.tcc:394:39: warning: implicit conversion from 'float' to 'double' to match other operand of binary expression [-Wdouble-promotion]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/bessel_function.tcc:394:47: warning: implicit conversion from 'float' to 'double' to match other operand of binary expression [-Wdouble-promotion]
test-ceilf2.c:143:18: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-ceilf2.c:143:21: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-ceilf2.c:143:24: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-ceilf2.c:143:35: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-ceilf2.c:143:46: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-ceilf2.c:143:54: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-floorf2.c:139:18: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-floorf2.c:139:21: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-floorf2.c:139:24: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-floorf2.c:139:35: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-floorf2.c:139:46: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-floorf2.c:139:54: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-round2.c:67:25: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-round2.c:67:28: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-round2.c:67:31: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-round2.c:67:35: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-round2.c:67:39: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-round2.c:67:43: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-truncf2.c:148:18: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-truncf2.c:148:21: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-truncf2.c:148:24: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-truncf2.c:148:35: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-truncf2.c:148:46: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
test-truncf2.c:148:54: warning: implicit conversion from 'float' to 'double' when passing argument to function [-Wdouble-promotion]
fsusage.c:59:19: warning: this condition has identical branches [-Wduplicated-branches]
nstrftime.c:162:51: warning: this condition has identical branches [-Wduplicated-branches]
test-exp.h:71:8: warning: this condition has identical branches [-Wduplicated-branches]
test-exp2.h:83:8: warning: this condition has identical branches [-Wduplicated-branches]
test-expm1.h:65:8: warning: this condition has identical branches [-Wduplicated-branches]
test-isnan.c:50:12: warning: this condition has identical branches [-Wduplicated-branches]
test-isnan.c:51:12: warning: this condition has identical branches [-Wduplicated-branches]
test-isnan.c:53:11: warning: this condition has identical branches [-Wduplicated-branches]
test-log.h:57:8: warning: this condition has identical branches [-Wduplicated-branches]
test-log.h:92:8: warning: this condition has identical branches [-Wduplicated-branches]
test-log10.h:57:8: warning: this condition has identical branches [-Wduplicated-branches]
test-log10.h:86:8: warning: this condition has identical branches [-Wduplicated-branches]
test-log2.h:113:8: warning: this condition has identical branches [-Wduplicated-branches]
test-log2.h:84:8: warning: this condition has identical branches [-Wduplicated-branches]
bitset/stats.c:154:24: warning: field width specifier '*' expects argument of type 'int', but argument 3 has type 'unsigned int' [-Wformat=]
bitset/stats.c:154:25: warning: format '%d' expects argument of type 'int', but argument 4 has type 'unsigned int' [-Wformat=]
bitset/stats.c:158:24: warning: field width specifier '*' expects argument of type 'int', but argument 3 has type 'unsigned int' [-Wformat=]
bitset/stats.c:165:22: warning: field width specifier '*' expects argument of type 'int', but argument 3 has type 'unsigned int' [-Wformat=]
gc-gnulib.c:293:45: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'int' [-Wformat=]
gc-gnulib.c:351:48: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'int' [-Wformat=]
pt_chown.c:138:17: warning: format '%o' expects argument of type 'unsigned int', but argument 3 has type 'int' [-Wformat=]
test-arcfour.c:43:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-arcfour.c:46:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-arcfour.c:60:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-arcfour.c:63:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-arctwo.c:120:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-arctwo.c:123:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-arctwo.c:142:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-arctwo.c:145:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-arctwo.c:164:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-arctwo.c:167:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-fprintf-posix2.c:106:41: warning: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'int' [-Wformat=]
test-gc-arcfour.c:62:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-arcfour.c:65:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-arcfour.c:85:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-arcfour.c:88:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-arctwo.c:61:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-arctwo.c:64:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-arctwo.c:84:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-arctwo.c:87:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-hmac-md5.c:68:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-hmac-md5.c:71:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-hmac-sha1.c:59:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-hmac-sha1.c:62:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-hmac-sha256.c:58:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-hmac-sha256.c:61:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-hmac-sha512.c:58:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-hmac-sha512.c:61:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md2.c:113:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md2.c:116:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md2.c:59:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md2.c:62:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md2.c:78:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md2.c:81:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md2.c:94:48: warning: format '%d' expects argument of type 'int', but argument 2 has type 'unsigned int' [-Wformat=]
test-gc-md4.c:115:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md4.c:118:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md4.c:61:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md4.c:64:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md4.c:80:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md4.c:83:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md4.c:96:48: warning: format '%d' expects argument of type 'int', but argument 2 has type 'unsigned int' [-Wformat=]
test-gc-md5.c:115:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md5.c:118:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md5.c:61:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md5.c:64:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md5.c:80:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md5.c:83:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-md5.c:96:48: warning: format '%d' expects argument of type 'int', but argument 2 has type 'unsigned int' [-Wformat=]
test-gc-pbkdf2-sha1.c:101:34: warning: format '%ld' expects argument of type 'long int', but argument 2 has type 'long unsigned int' [-Wformat=]
test-gc-pbkdf2-sha1.c:94:34: warning: format '%ld' expects argument of type 'long int', but argument 2 has type 'long unsigned int' [-Wformat=]
test-gc-pbkdf2.c:118:34: warning: format '%ld' expects argument of type 'long int', but argument 2 has type 'long unsigned int' [-Wformat=]
test-gc-pbkdf2.c:125:34: warning: format '%ld' expects argument of type 'long int', but argument 2 has type 'long unsigned int' [-Wformat=]
test-gc-rijndael.c:140:38: warning: format '%d' expects argument of type 'int', but argument 2 has type 'unsigned int' [-Wformat=]
test-gc-rijndael.c:150:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-rijndael.c:153:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-rijndael.c:63:38: warning: format '%d' expects argument of type 'int', but argument 2 has type 'unsigned int' [-Wformat=]
test-gc-rijndael.c:73:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-rijndael.c:76:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-rijndael.c:86:38: warning: format '%d' expects argument of type 'int', but argument 2 has type 'unsigned int' [-Wformat=]
test-gc-rijndael.c:96:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-rijndael.c:99:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha1.c:112:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha1.c:115:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha1.c:57:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha1.c:60:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha1.c:68:53: warning: format '%d' expects argument of type 'int', but argument 2 has type 'unsigned int' [-Wformat=]
test-gc-sha1.c:77:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha1.c:80:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha1.c:93:49: warning: format '%d' expects argument of type 'int', but argument 2 has type 'unsigned int' [-Wformat=]
test-gc-sha256.c:113:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha256.c:116:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha256.c:58:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha256.c:61:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha256.c:69:55: warning: format '%d' expects argument of type 'int', but argument 2 has type 'unsigned int' [-Wformat=]
test-gc-sha256.c:78:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha256.c:81:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha256.c:94:51: warning: format '%d' expects argument of type 'int', but argument 2 has type 'unsigned int' [-Wformat=]
test-gc-sha512.c:115:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha512.c:118:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha512.c:60:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha512.c:63:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha512.c:71:55: warning: format '%d' expects argument of type 'int', but argument 2 has type 'unsigned int' [-Wformat=]
test-gc-sha512.c:80:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha512.c:83:23: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-gc-sha512.c:96:51: warning: format '%d' expects argument of type 'int', but argument 2 has type 'unsigned int' [-Wformat=]
test-hmac-md5.c:46:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-hmac-md5.c:49:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-hmac-sha1.c:44:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-hmac-sha1.c:47:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-hmac-sha256.c:44:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-hmac-sha256.c:47:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-hmac-sha512.c:44:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-hmac-sha512.c:47:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-md2-buffer.c:43:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-md2-buffer.c:46:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-md2-buffer.c:57:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-md2-buffer.c:60:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-md4-buffer.c:44:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-md4-buffer.c:47:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-md4-buffer.c:58:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-md4-buffer.c:61:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-nonblocking-socket-main.c:64:26: warning: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'int' [-Wformat=]
test-printf-posix2.c:106:32: warning: format '%u' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-rijndael.c:64:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-rijndael.c:67:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-rijndael.c:95:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-rijndael.c:98:21: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'int' [-Wformat=]
test-string-buffer.c:104:29: warning: format '%lc' expects argument of type 'wint_t', but argument 3 has type 'int' [-Wformat=]
unigbrk/test-u16-grapheme-next.c:60:55: warning: format '%zu' expects argument of type 'size_t', but argument 3 has type 'long int' [-Wformat=]
unigbrk/test-u16-grapheme-prev.c:62:55: warning: format '%zu' expects argument of type 'size_t', but argument 3 has type 'long int' [-Wformat=]
unigbrk/test-u32-grapheme-next.c:60:55: warning: format '%zu' expects argument of type 'size_t', but argument 3 has type 'long int' [-Wformat=]
unigbrk/test-u32-grapheme-prev.c:62:55: warning: format '%zu' expects argument of type 'size_t', but argument 3 has type 'long int' [-Wformat=]
unigbrk/test-u8-grapheme-next.c:41:54: warning: format '%zu' expects argument of type 'size_t', but argument 3 has type 'long int' [-Wformat=]
unigbrk/test-u8-grapheme-prev.c:42:54: warning: format '%zu' expects argument of type 'size_t', but argument 3 has type 'long int' [-Wformat=]
dfa.c:4183:11: warning: this statement may fall through [-Wimplicit-fallthrough=]
./macros.h:57:10: warning: 'first_ptr' may be used uninitialized [-Wmaybe-uninitialized]
./macros.h:57:10: warning: 'second_ptr' may be used uninitialized [-Wmaybe-uninitialized]
../gllib/ssfmalloc.h:502:3: warning: missing initializer for field 'page_capacity' of 'struct page_pool' [-Wmissing-field-initializers]
../gllib/ssfmalloc.h:668:3: warning: missing initializer for field 'page_capacity' of 'struct page_pool' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:102:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:106:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:111:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:112:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:115:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:119:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:120:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:125:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:129:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:131:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:137:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:140:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:361:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:40:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:50:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:51:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:53:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:55:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:57:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:61:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:62:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:64:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:79:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:81:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:89:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:90:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:92:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:96:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/categ_byname.gperf:97:5: warning: missing initializer for field 'category_index' of 'const struct named_category' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:100:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:102:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:104:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:105:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:108:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:109:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:111:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:116:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:117:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:122:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:127:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:133:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:134:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:135:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:137:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:138:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:139:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:141:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:154:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:162:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:163:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:164:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:166:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:168:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:169:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:170:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:174:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:177:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:179:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:183:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:188:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:189:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:190:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:193:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:197:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:198:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:199:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:200:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:202:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:203:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:204:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:205:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:206:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:207:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:208:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:210:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:212:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:213:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:214:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:216:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:218:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:219:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:220:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:221:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:223:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:224:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:227:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:229:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:230:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:231:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:232:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:236:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:237:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:239:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:38:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:39:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:41:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:42:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:44:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:45:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:46:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:47:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:48:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:49:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:51:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:52:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:538:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:56:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:57:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:58:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:59:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:62:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:64:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:65:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:66:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:69:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:71:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:73:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:74:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:75:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:81:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:82:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:83:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:84:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:85:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:86:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:87:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:88:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:89:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:90:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:91:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:92:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:93:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:94:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:95:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/pr_byname.gperf:96:5: warning: missing initializer for field 'property_index' of 'const struct named_property' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:100:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:103:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:104:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:110:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:118:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:124:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:130:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:136:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:137:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:146:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:161:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:172:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:183:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:185:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:192:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:35:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:36:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:37:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:443:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:50:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:57:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:67:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:68:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:72:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:79:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:82:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:87:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:88:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:91:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
./unictype/scripts_byname.gperf:99:5: warning: missing initializer for field 'index' of 'const struct named_script' [-Wmissing-field-initializers]
argp-help.c:111:1: warning: missing initializer for field 'valid' of 'struct uparams' [-Wmissing-field-initializers]
argp-parse.c:464:10: warning: missing initializer for field 'rpl_optopt' of 'struct _getopt_data' [-Wmissing-field-initializers]
git-merge-changelog.c:826:15: warning: missing initializer for field 'hashcode_cached' of 'struct entry' [-Wmissing-field-initializers]
ssfmalloc.h:502:3: warning: missing initializer for field 'page_capacity' of 'struct page_pool' [-Wmissing-field-initializers]
ssfmalloc.h:668:3: warning: missing initializer for field 'page_capacity' of 'struct page_pool' [-Wmissing-field-initializers]
test-argp.c:122:1: warning: missing initializer for field 'args_doc' of 'struct argp' [-Wmissing-field-initializers]
test-argp.c:168:1: warning: missing initializer for field 'args_doc' of 'struct argp' [-Wmissing-field-initializers]
test-argp.c:180:3: warning: missing initializer for field 'group' of 'struct argp_option' [-Wmissing-field-initializers]
test-argp.c:181:3: warning: missing initializer for field 'group' of 'struct argp_option' [-Wmissing-field-initializers]
test-argp.c:204:1: warning: missing initializer for field 'args_doc' of 'struct argp' [-Wmissing-field-initializers]
test-argp.c:86:1: warning: missing initializer for field 'args_doc' of 'struct argp' [-Wmissing-field-initializers]
test-argp.c:98:3: warning: missing initializer for field 'group' of 'struct argp_option' [-Wmissing-field-initializers]
test-argp.c:99:3: warning: missing initializer for field 'group' of 'struct argp_option' [-Wmissing-field-initializers]
test-ieee754-h.c:39:4: warning: missing initializer for field 'frac_lo' of 'const struct <anonymous>' [-Wmissing-field-initializers]
test-ieee754-h.c:40:4: warning: missing initializer for field 'frac_lo' of 'const struct <anonymous>' [-Wmissing-field-initializers]
test-sigsegv-catch-stackoverflow2.c:188:37: warning: null pointer dereference [-Wnull-dereference]
test-thread_local.c:87:1: warning: '__thread' is not at beginning of declaration [-Wold-style-declaration]
test-thread_local.c:88:1: warning: '__thread' is not at beginning of declaration [-Wold-style-declaration]
test-thread_local.c:89:1: warning: '__thread' is not at beginning of declaration [-Wold-style-declaration]
test-thread_local.c:90:1: warning: '__thread' is not at beginning of declaration [-Wold-style-declaration]
gc-gnulib.c:385:11: warning: passing argument 3 to 'restrict'-qualified parameter aliases with argument 2 [-Wrestrict]
gc-gnulib.c:396:31: warning: passing argument 3 to 'restrict'-qualified parameter aliases with argument 2 [-Wrestrict]
gc-gnulib.c:410:7: warning: passing argument 3 to 'restrict'-qualified parameter aliases with argument 2 [-Wrestrict]
gc-gnulib.c:429:41: warning: passing argument 5 to 'restrict'-qualified parameter aliases with argument 3 [-Wrestrict]
gc-gnulib.c:455:11: warning: passing argument 3 to 'restrict'-qualified parameter aliases with argument 2 [-Wrestrict]
gc-gnulib.c:466:31: warning: passing argument 3 to 'restrict'-qualified parameter aliases with argument 2 [-Wrestrict]
gc-gnulib.c:482:7: warning: passing argument 3 to 'restrict'-qualified parameter aliases with argument 2 [-Wrestrict]
gc-gnulib.c:501:41: warning: passing argument 5 to 'restrict'-qualified parameter aliases with argument 3 [-Wrestrict]
test-arcfour.c:54:34: warning: passing argument 3 to 'restrict'-qualified parameter aliases with argument 2 [-Wrestrict]
test-arctwo.c:107:34: warning: passing argument 3 to 'restrict'-qualified parameter aliases with argument 2 [-Wrestrict]
test-arctwo.c:129:34: warning: passing argument 3 to 'restrict'-qualified parameter aliases with argument 2 [-Wrestrict]
test-arctwo.c:151:34: warning: passing argument 3 to 'restrict'-qualified parameter aliases with argument 2 [-Wrestrict]
test-arctwo.c:173:34: warning: passing argument 3 to 'restrict'-qualified parameter aliases with argument 2 [-Wrestrict]
test-arctwo.c:84:34: warning: passing argument 3 to 'restrict'-qualified parameter aliases with argument 2 [-Wrestrict]
test-arctwo.c:95:34: warning: passing argument 3 to 'restrict'-qualified parameter aliases with argument 2 [-Wrestrict]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/istream:926:22: warning: declaration of '__n' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/bessel_function.tcc:229:15: warning: declaration of '__fact' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/bessel_function.tcc:231:15: warning: declaration of '__d' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/bessel_function.tcc:246:15: warning: declaration of '__c' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/bessel_function.tcc:278:15: warning: declaration of '__fact' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/bessel_function.tcc:289:15: warning: declaration of '__i' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/modified_bessel_func.tcc:160:21: warning: declaration of '__fact' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/modified_bessel_func.tcc:162:15: warning: declaration of '__d' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/modified_bessel_func.tcc:174:15: warning: declaration of '__c' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/modified_bessel_func.tcc:177:15: warning: declaration of '__i' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/modified_bessel_func.tcc:199:15: warning: declaration of '__b' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/modified_bessel_func.tcc:200:15: warning: declaration of '__d' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/modified_bessel_func.tcc:202:15: warning: declaration of '__h' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/modified_bessel_func.tcc:209:15: warning: declaration of '__i' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/riemann_zeta.tcc:178:19: warning: declaration of '__zeta' shadows a previous local [-Wshadow=compatible-local]
test-gc-rijndael.c:147:16: warning: declaration of 'i' shadows a previous local [-Wshadow=compatible-local]
test-gc-rijndael.c:70:16: warning: declaration of 'i' shadows a previous local [-Wshadow=compatible-local]
test-gc-rijndael.c:93:16: warning: declaration of 'i' shadows a previous local [-Wshadow=compatible-local]
test-rijndael.c:61:14: warning: declaration of 'i' shadows a previous local [-Wshadow=compatible-local]
test-rijndael.c:92:14: warning: declaration of 'i' shadows a previous local [-Wshadow=compatible-local]
unistr/test-chr.h:123:22: warning: declaration of 'i' shadows a previous local [-Wshadow=compatible-local]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/tr1/modified_bessel_func.tcc:160:21: warning: declaration of '__fact' shadows a previous local [-Wshadow=local]
test-pipe-filter-gi1.c:88:17: warning: declaration of 'argv' shadows a parameter [-Wshadow=local]
test-pipe-filter-ii1.c:110:17: warning: declaration of 'argv' shadows a parameter [-Wshadow=local]
unistr/test-chr.h:111:11: warning: declaration of 'page_boundary' shadows a previous local [-Wshadow=local]
unistr/test-chr.h:96:9: warning: declaration of 'i' shadows a previous local [-Wshadow=local]
unistr/test-strchr.h:91:9: warning: declaration of 'i' shadows a previous local [-Wshadow=local]
../gllib/monetary.h:612:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:1035:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:1184:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:1560:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:1581:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:1694:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:1896:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:1914:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:1959:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:2043:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:2065:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:2089:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:2134:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:2174:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:2199:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:2232:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:2250:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:2287:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/stdio.h:774:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
../gllib/time.h:966:1: warning: return type might be a candidate for a format attribute [-Wsuggest-attribute=format]
/gnu-inst-gcc/13.2.0/include/c++/13.2.0/x86_64-pc-linux-gnu/bits/c++locale.h:97:42: warning: function 'int std::__convert_from_v(__locale_struct* const&, char*, int, const char*, ...)' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
c-snprintf.c:49:3: warning: function 'c_snprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
c-vsnprintf.c:49:3: warning: function 'c_vsnprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-c-vasprintf.c:34:3: warning: function 'my_c_asprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-c-vsnprintf.c:37:3: warning: function 'my_c_snprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-c-xvasprintf.c:34:3: warning: function 'my_c_xasprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-dprintf-gnu.c:95:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-dprintf-posix.c:170:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-dprintf-posix.c:24:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-dprintf.c:22:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-fprintf-gnu.c:34:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-fprintf-posix.c:24:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-fprintf-posix.c:38:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-obstack-printf.c:112:3: warning: function 'my_obstack_printf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-obstack-printf.c:126:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-obstack-printf.c:24:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-obstack-printf.c:25:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-printf-gnu.c:33:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-printf-posix.c:24:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-printf-posix.c:37:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-regex.c:43:3: warning: function 'report_error' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-snprintf-gnu.c:33:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-snprintf-posix.c:37:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-snprintf.c:24:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-sprintf-gnu.c:33:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-sprintf-posix.c:24:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-sprintf-posix.c:40:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-strfmon_l.c:25:18: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-string-buffer.c:33:3: warning: function 'my_appendf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vasnprintf-gnu.c:252:3: warning: function 'my_asnprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vasnprintf-gnu.c:266:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vasnprintf-posix.c:5116:3: warning: function 'my_asnprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vasnprintf-posix.c:5130:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vasnprintf-posix3.c:58:3: warning: function 'my_asnprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vasnprintf-posix3.c:72:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vasnprintf.c:112:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vasnprintf.c:98:3: warning: function 'my_asnprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vasprintf-gnu.c:252:3: warning: function 'my_asprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vasprintf-gnu.c:266:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vasprintf-posix.c:5044:3: warning: function 'my_asprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vasprintf-posix.c:5058:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vasprintf.c:24:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vasprintf.c:25:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vasprintf.c:40:3: warning: function 'my_asprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vdprintf-gnu.c:38:3: warning: function 'my_fprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vdprintf-posix.c:24:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vdprintf-posix.c:42:3: warning: function 'my_fprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vdprintf.c:22:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vdprintf.c:36:3: warning: function 'my_dprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-verror.c:41:3: warning: function 'test_zero' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-verror.c:52:3: warning: function 'test_zero_at_line' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-verror.c:62:3: warning: function 'test_errnum' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-verror.c:72:3: warning: function 'test_fatal' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vfprintf-gnu.c:38:3: warning: function 'my_fprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vfprintf-posix.c:24:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vfprintf-posix.c:42:3: warning: function 'my_fprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vprintf-gnu.c:38:3: warning: function 'my_printf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vprintf-posix.c:24:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vprintf-posix.c:42:3: warning: function 'my_printf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vsnprintf-gnu.c:38:3: warning: function 'my_snprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vsnprintf-posix.c:42:3: warning: function 'my_snprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vsnprintf.c:24:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vsnprintf.c:38:3: warning: function 'my_snprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vsprintf-gnu.c:38:3: warning: function 'my_sprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-vsprintf-posix.c:24:1: warning: initialization left-hand side might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-vsprintf-posix.c:45:3: warning: function 'my_sprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-xfprintf-posix.c:35:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-xprintf-posix.c:34:18: warning: argument 1 of 'test_function' might be a candidate for a format attribute [-Wsuggest-attribute=format]
test-xvasprintf.c:43:3: warning: function 'my_xasprintf' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
test-striconveha.c:105:11: warning: enumeration value 'iconveh_replacement_character' not handled in switch [-Wswitch]
test-striconveha.c:235:11: warning: enumeration value 'iconveh_replacement_character' not handled in switch [-Wswitch]
test-striconveha.c:460:7: warning: enumeration value 'iconveh_replacement_character' not handled in switch [-Wswitch]
test-striconveha.c:514:7: warning: enumeration value 'iconveh_replacement_character' not handled in switch [-Wswitch]
uniconv/test-u16-conv-to-enc.c:103:11: warning: enumeration value 'iconveh_replacement_character' not handled in switch [-Wswitch]
uniconv/test-u16-strconv-to-enc.c:67:7: warning: enumeration value 'iconveh_replacement_character' not handled in switch [-Wswitch]
uniconv/test-u32-conv-to-enc.c:103:11: warning: enumeration value 'iconveh_replacement_character' not handled in switch [-Wswitch]
uniconv/test-u32-strconv-to-enc.c:66:7: warning: enumeration value 'iconveh_replacement_character' not handled in switch [-Wswitch]
uniconv/test-u8-conv-to-enc.c:103:11: warning: enumeration value 'iconveh_replacement_character' not handled in switch [-Wswitch]
uniconv/test-u8-strconv-to-enc.c:58:7: warning: enumeration value 'iconveh_replacement_character' not handled in switch [-Wswitch]
../gllib/malloc.h:615:1: warning: declaration of 'void* memalign(size_t, size_t)' has a different exception specifier [-Wsystem-headers]
../gllib/stdio.h:860:1: warning: declaration of 'FILE* fdopen(int, const char*)' has a different exception specifier [-Wsystem-headers]
../gllib/stdlib.h:1135:1: warning: declaration of 'void* malloc(size_t)' has a different exception specifier [-Wsystem-headers]
../gllib/stdlib.h:1858:1: warning: declaration of 'void* realloc(void*, size_t)' has a different exception specifier [-Wsystem-headers]
../gllib/stdlib.h:800:1: warning: declaration of 'void* aligned_alloc(size_t, size_t)' has a different exception specifier [-Wsystem-headers]
../gllib/stdlib.h:858:1: warning: declaration of 'void* calloc(size_t, size_t)' has a different exception specifier [-Wsystem-headers]
../gllib/stdlib.h:894:1: warning: declaration of 'char* canonicalize_file_name(const char*)' has a different exception specifier [-Wsystem-headers]
../gllib/string.h:1092:1: warning: declaration of 'char* strdup(const char*)' has a different exception specifier [-Wsystem-headers]
../gllib/string.h:1175:1: warning: declaration of 'char* strndup(const char*, size_t)' has a different exception specifier [-Wsystem-headers]
../gllib/sys/stat.h:1091:1: warning: declaration of 'mode_t getumask()' has a different exception specifier [-Wsystem-headers]
../gllib/wchar.h:1819:1: warning: declaration of 'wchar_t* wcsdup(const wchar_t*)' has a different exception specifier [-Wsystem-headers]
test-bitset.c:277:19: warning: variable 'i' set but not used [-Wunused-but-set-variable]
test-nonblocking-misc.h:101:10: warning: variable 'spent_time' set but not used [-Wunused-but-set-variable]
unigbrk/test-uc-grapheme-breaks.c:31:1: warning: 'graphemebreakproperty_to_string' defined but not used [-Wunused-function]
unictype/test-categ_byname.c:209:3: warning: statement with no effect [-Wunused-value]
macros.h:57:10: warning: leak of file descriptor 'dup2(fd[0], 0)' [CWE-775] [-Wanalyzer-fd-leak]
uniname/uniname.c:393:21: warning: use of uninitialized value 'buf[1]' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
macros.h:57:10: warning: leak of file descriptor 'dup2(fd[1], 1)' [CWE-775] [-Wanalyzer-fd-leak]
../gllib/unistr.h:363:14: warning: heap-based buffer underwrite [CWE-124] [-Wanalyzer-out-of-bounds]
test-argv-iter.c:97:35: warning: buffer under-read [CWE-127] [-Wanalyzer-out-of-bounds]
unicase/u-casemap.h:395:29: warning: allocated buffer size is not a multiple of the pointee's size [CWE-131] [-Wanalyzer-allocation-size]
unicase/u-ct-totitle.h:474:29: warning: allocated buffer size is not a multiple of the pointee's size [CWE-131] [-Wanalyzer-allocation-size]
uninorm/u-normalize-internal.h:344:29: warning: allocated buffer size is not a multiple of the pointee's size [CWE-131] [-Wanalyzer-allocation-size]
unistr/test-u-strtok.h:54:28: warning: allocated buffer size is not a multiple of the pointee's size [CWE-131] [-Wanalyzer-allocation-size]
unistr/test-u-strtok.h:56:28: warning: allocated buffer size is not a multiple of the pointee's size [CWE-131] [-Wanalyzer-allocation-size]
pipe-filter-aux.h:78:14: warning: double 'close' of file descriptor 'fd' [CWE-1341] [-Wanalyzer-fd-double-close]
spawn-pipe.c:97:14: warning: double 'close' of file descriptor 'fd' [CWE-1341] [-Wanalyzer-fd-double-close]
test-dup-safer.c:143:7: warning: double 'close' of file descriptor 'fd + 1' [CWE-1341] [-Wanalyzer-fd-double-close]
test-fchdir.c:95:19: warning: double 'close' of file descriptor 'new_fd' [CWE-1341] [-Wanalyzer-fd-double-close]
./macros.h:57:10: warning: use of uninitialized value 'first_ptr' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
./macros.h:57:10: warning: use of uninitialized value 'second_ptr' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
amemxfrm.c:147:11: warning: use of uninitialized value 'result' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
argp-help.c:645:21: warning: use of uninitialized value '*hol.entries' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
diffseq.h:421:26: warning: use of uninitialized value 'fxbest' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
diffseq.h:428:26: warning: use of uninitialized value 'bxbest' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_anylinked_list2.h:1023:10: warning: use of uninitialized value 'result.count' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_anylinked_list2.h:952:10: warning: use of uninitialized value 'result.count' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_anytree_list2.h:603:10: warning: use of uninitialized value 'result.count' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_anytree_list2.h:627:10: warning: use of uninitialized value 'result.count' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_anytree_omap.h:270:10: warning: use of uninitialized value 'result.count' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_anytree_oset.h:375:10: warning: use of uninitialized value 'result.count' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_anytree_oset.h:417:18: warning: use of uninitialized value 'result.count' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_anytree_oset.h:421:10: warning: use of uninitialized value 'result.count' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_array_list.c:477:10: warning: use of uninitialized value 'result.i' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_array_list.c:498:10: warning: use of uninitialized value 'result.i' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_array_map.c:249:10: warning: use of uninitialized value 'result.i' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_array_omap.c:342:10: warning: use of uninitialized value 'result.i' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_array_oset.c:441:10: warning: use of uninitialized value 'result.i' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_array_oset.c:462:10: warning: use of uninitialized value 'result.i' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_array_set.c:234:10: warning: use of uninitialized value 'result.i' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_carray_list.c:647:10: warning: use of uninitialized value 'result.p' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_carray_list.c:668:10: warning: use of uninitialized value 'result.p' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_hash_map.c:271:10: warning: use of uninitialized value 'result.count' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_hash_set.c:254:10: warning: use of uninitialized value 'result.count' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_linkedhash_map.c:294:10: warning: use of uninitialized value 'result.count' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
gl_linkedhash_set.c:277:10: warning: use of uninitialized value 'result.count' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
read-file.c:113:25: warning: use of uninitialized value 'buf' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
uniname/uniname.c:116:24: warning: use of uninitialized value '*w' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
vasnprintf.c:4432:17: warning: use of uninitialized value 'tmp' [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
test-sigpipe.c:34:3: warning: call to 'exit' from within signal handler [CWE-479] [-Wanalyzer-unsafe-call-within-signal-handler]
test-openat.c:51:12: warning: 'va_arg' expected 'mode_t' {aka 'unsigned int'} but received 'int' for variadic argument 1 of 'arg' [CWE-686] [-Wanalyzer-va-arg-type-mismatch]
test-dirfd.c:42:12: warning: use of possibly-NULL 'd' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-execute-main.c:188:9: warning: use of possibly-NULL 'fp' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-execute-main.c:207:9: warning: use of possibly-NULL 'fp' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-execute-main.c:237:32: warning: use of possibly-NULL 'contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-execute-main.c:289:32: warning: use of possibly-NULL 'contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-execute-main.c:361:9: warning: use of possibly-NULL 'fp' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-execute-main.c:408:32: warning: use of possibly-NULL 'contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-execute-main.c:418:9: warning: use of possibly-NULL 'fp' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-execute-script.c:87:29: warning: use of possibly-NULL 'contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-fbufmode.c:64:3: warning: use of possibly-NULL 'fp' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-freadseek.c:50:11: warning: use of possibly-NULL 'buf1' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-freadseek.c:58:11: warning: use of possibly-NULL 'buf3' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-freadseek.c:67:11: warning: use of possibly-NULL 'buf5' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-freadseek.c:77:11: warning: use of possibly-NULL 'buf7' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-getndelim2.c:79:3: warning: use of possibly-NULL 'line' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-strstr.c:70:5: warning: use of possibly-NULL '<unknown>' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-fopen.h:145:23: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-fopen.h:150:23: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-fopen.h:160:17: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-fopen.h:235:17: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-fopen.h:50:13: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-fopen.h:73:19: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-fopen.h:78:19: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-fopen.h:88:13: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-open.h:142:23: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-open.h:147:23: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-open.h:157:17: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-open.h:232:17: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-open.h:49:13: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-open.h:71:19: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-open.h:76:19: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-supersede-open.h:86:13: warning: use of possibly-NULL 'file_contents' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-times.c:81:7: warning: use of possibly-NULL 'base' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-wcsstr.c:71:5: warning: use of possibly-NULL '<unknown>' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
../gllib/array-mergesort.h:106:14: warning: dereference of possibly-NULL 'dst' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/array-mergesort.h:113:18: warning: dereference of possibly-NULL 'dst' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/array-mergesort.h:118:18: warning: dereference of possibly-NULL 'dst' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/array-mergesort.h:129:22: warning: dereference of possibly-NULL 'dst' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/array-mergesort.h:136:22: warning: dereference of possibly-NULL 'dst' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/array-mergesort.h:143:22: warning: dereference of possibly-NULL 'dst' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/array-mergesort.h:153:22: warning: dereference of possibly-NULL 'dst' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/array-mergesort.h:160:22: warning: dereference of possibly-NULL 'dst' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/array-mergesort.h:167:22: warning: dereference of possibly-NULL 'dst' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/array-mergesort.h:53:18: warning: dereference of possibly-NULL 'dst' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/array-mergesort.h:60:18: warning: dereference of possibly-NULL 'dst' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/unistr.h:320:12: warning: dereference of possibly-NULL 's' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/unistr.h:342:12: warning: dereference of possibly-NULL 's' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/unistr.h:363:14: warning: dereference of possibly-NULL 'ptr' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-array-mergesort.c:23:26: warning: dereference of possibly-NULL 'src1' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-array-mergesort.c:317:20: warning: dereference of possibly-NULL 'tmp' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-array-mergesort.c:328:25: warning: dereference of possibly-NULL 'qsort_result' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-array_list.c:100:19: warning: dereference of possibly-NULL 'contents' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-avltree_list.c:106:19: warning: dereference of possibly-NULL 'contents' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-avltreehash_list.c:133:19: warning: dereference of possibly-NULL 'contents' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-carray_list.c:102:19: warning: dereference of possibly-NULL 'contents' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-linked_list.c:102:19: warning: dereference of possibly-NULL 'contents' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-linkedhash_list.c:129:19: warning: dereference of possibly-NULL 'contents' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-pthread-tss.c:124:12: warning: dereference of possibly-NULL 'ptr' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-rbtree_list.c:106:19: warning: dereference of possibly-NULL 'contents' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-rbtreehash_list.c:133:19: warning: dereference of possibly-NULL 'contents' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-safe-alloc.c:43:12: warning: dereference of possibly-NULL 'p' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-safe-alloc.c:48:15: warning: dereference of possibly-NULL 'reallocarray(p, 5, 8)' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-times.c:79:17: warning: dereference of possibly-NULL 'base' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-tls.c:120:12: warning: dereference of possibly-NULL 'ptr' [CWE-690] [-Wanalyzer-possible-null-dereference]
test-tss.c:120:12: warning: dereference of possibly-NULL 'ptr' [CWE-690] [-Wanalyzer-possible-null-dereference]
uniconv/test-u16-conv-to-enc.c:36:14: warning: dereference of possibly-NULL 'offsets' [CWE-690] [-Wanalyzer-possible-null-dereference]
uniconv/test-u32-conv-to-enc.c:36:14: warning: dereference of possibly-NULL 'offsets' [CWE-690] [-Wanalyzer-possible-null-dereference]
../gllib/safe-alloc.h:42:10: warning: 'p' should have been deallocated with 'free' but was deallocated with 'reallocarray' [CWE-762] [-Wanalyzer-mismatching-deallocation]
dup3.c:94:11: warning: leak of file descriptor 'dup2(oldfd,  newfd)' [CWE-775] [-Wanalyzer-fd-leak]
macros.h:57:10: warning: leak of file descriptor 'creat("nonexist.ent/", 384)' [CWE-775] [-Wanalyzer-fd-leak]
macros.h:57:10: warning: leak of file descriptor 'dup2(0, 0)' [CWE-775] [-Wanalyzer-fd-leak]
macros.h:57:10: warning: leak of file descriptor 'dup2(0, 10)' [CWE-775] [-Wanalyzer-fd-leak]
macros.h:57:10: warning: leak of file descriptor 'dup2(1, 1)' [CWE-775] [-Wanalyzer-fd-leak]
macros.h:57:10: warning: leak of file descriptor 'dup2(1, 10)' [CWE-775] [-Wanalyzer-fd-leak]
macros.h:57:10: warning: leak of file descriptor 'dup2(1, 11)' [CWE-775] [-Wanalyzer-fd-leak]
macros.h:57:10: warning: leak of file descriptor 'dup2(fd,  fd)' [CWE-775] [-Wanalyzer-fd-leak]
macros.h:57:10: warning: leak of file descriptor 'dup2(fd, 10)' [CWE-775] [-Wanalyzer-fd-leak]
macros.h:57:10: warning: leak of file descriptor 'open("Makefile", 0)' [CWE-775] [-Wanalyzer-fd-leak]
stdopen.c:55:14: warning: leak of file descriptor '<unknown>' [CWE-775] [-Wanalyzer-fd-leak]
test-dirent-safer.c:54:6: warning: leak of file descriptor 'dup2(2, 10)' [CWE-775] [-Wanalyzer-fd-leak]
test-dup-safer.c:121:6: warning: leak of file descriptor 'dup2(2, 10)' [CWE-775] [-Wanalyzer-fd-leak]
test-freopen-safer.c:43:6: warning: leak of file descriptor 'dup2(2, 10)' [CWE-775] [-Wanalyzer-fd-leak]
test-getopt-main.h:47:6: warning: leak of file descriptor 'dup2(2, 10)' [CWE-775] [-Wanalyzer-fd-leak]
test-openat-safer.c:50:6: warning: leak of file descriptor 'dup2(2, 10)' [CWE-775] [-Wanalyzer-fd-leak]
test-popen-safer.c:45:6: warning: leak of file descriptor 'dup2(2, 10)' [CWE-775] [-Wanalyzer-fd-leak]
test-spawn-pipe-main.c:87:6: warning: leak of file descriptor 'dup2(2, 10)' [CWE-775] [-Wanalyzer-fd-leak]
test-aligned-malloc.c:78:7: warning: use of possibly-NULL 'aligned4_blocks[i]' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-aligned-malloc.c:82:7: warning: use of possibly-NULL 'aligned8_blocks[i]' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
test-aligned-malloc.c:86:7: warning: use of possibly-NULL 'aligned16_blocks[i]' where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]

Reply via email to