From b69c87a28e731d871b79fe16937a9ffac8d5cd99 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sat, 30 Nov 2024 08:23:17 -0700 Subject: [PATCH] Configure: Avoid printf format type mismatch Sometimes the value being printed is a long; sometimes not. In order to get it to always work properly, cast to a long and use %ld --- Configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configure b/Configure index 72c3794dd664..7868560295fb 100755 --- a/Configure +++ b/Configure @@ -22979,7 +22979,7 @@ else #include #include int main() { -printf("$xx %d\n", SIG${xx}); +printf("$xx %ld\n", (long) SIG${xx}); return 0; } EOCP