From 59e64dd86d6de4c92caf2c17b0e74c429be9d73b Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sun, 16 Mar 2025 10:10:28 +0900 Subject: [PATCH] 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. --- meson.build | 1 + 1 file changed, 1 insertion(+) 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', -- 2.47.3