From 9e74e58bcf7e31aef563f1ee00b7f0bc17fe3ef2 Mon Sep 17 00:00:00 2001 From: Arnaud Le Blanc Date: Fri, 29 Apr 2022 23:37:57 +0200 Subject: [PATCH] Fix whitespaces --- main/network.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main/network.c b/main/network.c index 7e31f7d57ee..2eb9fb51d86 100644 --- a/main/network.c +++ b/main/network.c @@ -886,10 +886,10 @@ php_socket_t php_network_connect_socket_to_host(const char *host, unsigned short } #endif #ifdef IP_BIND_ADDRESS_NO_PORT - { - int val = 1; - (void) setsockopt(sock, SOL_IP, IP_BIND_ADDRESS_NO_PORT, &val, sizeof(val)); - } + { + int val = 1; + (void) setsockopt(sock, SOL_IP, IP_BIND_ADDRESS_NO_PORT, &val, sizeof(val)); + } #endif if (local_address_len == 0) { php_error_docref(NULL, E_WARNING, "Invalid IP Address: %s", bindto);