From: Yu Watanabe Date: Sun, 16 Mar 2025 01:10:28 +0000 (+0900) Subject: meson: make pointer-sign warning critical X-Git-Tag: v258-rc1~1064^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=59e64dd86d6de4c92caf2c17b0e74c429be9d73b;p=thirdparty%2Fsystemd.git meson: make pointer-sign warning critical With the previous commit, no pointer signedness warning should be triggered even built with C23. Let's make the warning critical. --- diff --git a/meson.build b/meson.build index 9cbfffb8c30..48d4f0027c0 100644 --- a/meson.build +++ b/meson.build @@ -391,6 +391,7 @@ possible_common_cc_flags = [ '-Werror=missing-prototypes', '-Werror=overflow', '-Werror=override-init', + '-Werror=pointer-sign', '-Werror=return-type', '-Werror=shift-count-overflow', '-Werror=shift-overflow=2',