getaddrinfo.c: Avoid misleading indentation warning
commit20d7d58f1aa3cd230252b6391ff5db7e84d0efa3
authorMarcus Haehnel <marcus.haehnel@kernkonzept.com>
Sat, 25 Nov 2023 23:05:19 +0000 (26 00:05 +0100)
committerWaldemar Brodkorb <wbx@openadk.org>
Mon, 27 Nov 2023 07:48:52 +0000 (27 08:48 +0100)
tree9d41a88af7110ee201d5586f5469d0566aad5695
parentd2c58318e70eaac636e83e718e389603dde85eac
getaddrinfo.c: Avoid misleading indentation warning

When compiling getaddrinfo.c with clang the -Wmisleading-indentation
option will cause a warning due to the indentation lining up with the
previous statement in the if block above.

For gcc the warning is blinded by the commented line. See also:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107162

Move the comment behind the function call to make both compilers happy.
libc/inet/getaddrinfo.c