commit c17e0cb19fcbfb0cfa02a99bd6f7c051ec07f853 parent da5dce00a254ceb62be39be544782cd8ba508d4b Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev> Date: Fri, 25 Apr 2025 10:24:05 +0200 Fixed warning in configure check Can be backported Diffstat:
| M | configure.ac | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac @@ -1367,7 +1367,7 @@ AC_CACHE_CHECK([for 'unreachable' keywords supported by $CC],[mhd_cv_cc_kwd_unre #include <stddef.h> #endif -int zero_if_positive(int val) +static int zero_if_positive(int val) { if (val > 0) return 0;