From: Viktor Szakats Date: Sat, 11 Jan 2025 11:55:02 +0000 (+0100) Subject: curl-functions.m4: fix indentation in `CURL_SIZEOF()` X-Git-Tag: curl-8_12_0~139 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=94cfcb1e210461546bea5104404690df40d87c8f;p=thirdparty%2Fcurl.git curl-functions.m4: fix indentation in `CURL_SIZEOF()` Closes #15981 --- diff --git a/m4/curl-functions.m4 b/m4/curl-functions.m4 index 5046ad9396..bf233ff3a0 100644 --- a/m4/curl-functions.m4 +++ b/m4/curl-functions.m4 @@ -4509,19 +4509,21 @@ AC_DEFUN([CURL_SIZEOF], [ r=0 dnl Check the sizes in a reasonable order for typesize in 8 4 2 16 1; do - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ -#include -$2 -]], - [switch(0) { - case 0: - case (sizeof($1) == $typesize):; - } - ]) ], - [ - r=$typesize], - [ - r=0]) + AC_COMPILE_IFELSE([ + AC_LANG_PROGRAM([[ + #include + $2 + ]],[ + switch(0) { + case 0: + case (sizeof($1) == $typesize):; + } + ]) + ],[ + r=$typesize + ],[ + r=0 + ]) dnl get out of the loop once matched if test $r -gt 0; then break;