configure: fix indentation more

Follow-up to 0052b4b52d #14628

Closes #14682
This commit is contained in:
Viktor Szakats 2024-08-26 02:11:05 +02:00
parent aaacd02466
commit 26ab9027f0
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
10 changed files with 159 additions and 163 deletions

View file

@ -148,7 +148,7 @@ AC_DEFUN([CURL_CHECK_COMPILER_DEC_C], [
CURL_CHECK_DEF([__DECC], [], [silent])
CURL_CHECK_DEF([__DECC_VER], [], [silent])
if test "$curl_cv_have_def___DECC" = "yes" &&
test "$curl_cv_have_def___DECC_VER" = "yes"; then
test "$curl_cv_have_def___DECC_VER" = "yes"; then
AC_MSG_RESULT([yes])
compiler_id="DEC_C"
flags_dbg_yes="-g2"
@ -1424,10 +1424,10 @@ AC_DEFUN([CURL_CHECK_COMPILER_SYMBOL_HIDING], [
$tmp_EXTERN char *dummy(char *buff);
char *dummy(char *buff)
{
if(buff)
return ++buff;
else
return buff;
if(buff)
return ++buff;
else
return buff;
}
]],[[
char b[16];