1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-22 17:35:35 +03:00

meson: Compile with -Werror=format-signedness

This commit is contained in:
Jan Janssen 2022-08-30 09:57:53 +02:00
parent f996072fe0
commit a4ea5d19bb

View File

@ -347,7 +347,6 @@ endif
# Those generate many false positives, and we do not want to change the code to
# avoid them.
basic_disabled_warnings = [
'-Wno-format-signedness',
'-Wno-missing-field-initializers',
'-Wno-unused-parameter',
]
@ -356,6 +355,7 @@ possible_common_cc_flags = [
'-Wdate-time',
'-Wendif-labels',
'-Werror=format=2',
'-Werror=format-signedness',
'-Werror=implicit-function-declaration',
'-Werror=incompatible-pointer-types',
'-Werror=int-conversion',