]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: Compile with -Werror=format-signedness 24499/head
authorJan Janssen <medhefgo@web.de>
Tue, 30 Aug 2022 07:57:53 +0000 (09:57 +0200)
committerJan Janssen <medhefgo@web.de>
Tue, 30 Aug 2022 10:03:33 +0000 (12:03 +0200)
meson.build

index e80634de7ae50e2ccf620775a81b30659f643bdc..f11582131bc3fc2a5cfb7d50c38db8418a95bd27 100644 (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',