From: Jan Janssen Date: Tue, 30 Aug 2022 07:57:53 +0000 (+0200) Subject: meson: Compile with -Werror=format-signedness X-Git-Tag: v252-rc1~293^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a4ea5d19bb7649b6c184e7954c54ab8e68931c31;p=thirdparty%2Fsystemd.git meson: Compile with -Werror=format-signedness --- diff --git a/meson.build b/meson.build index e80634de7ae..f11582131bc 100644 --- a/meson.build +++ b/meson.build @@ -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',