]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
memdebug.h: fix whitespace/indentation
authorViktor Szakats <commit@vsz.me>
Sun, 6 Jul 2025 17:00:26 +0000 (19:00 +0200)
committerViktor Szakats <commit@vsz.me>
Sun, 6 Jul 2025 17:57:22 +0000 (19:57 +0200)
Cherry-picked from #17827

lib/memdebug.h

index e5dc02a3108e3daf876d0f21c19cbae1ddafdaaf..f2ebd60376fda6a91b6ef5b9243808974d0f2d96 100644 (file)
@@ -157,20 +157,20 @@ CURL_EXTERN ALLOC_FUNC
 #endif
 
 #undef socket
-#define socket(domain,type,protocol)\
- curl_dbg_socket((int)domain, type, protocol, __LINE__, __FILE__)
+#define socket(domain,type,protocol) \
 curl_dbg_socket((int)domain, type, protocol, __LINE__, __FILE__)
 #undef accept /* for those with accept as a macro */
-#define accept(sock,addr,len)\
- curl_dbg_accept(sock, addr, len, __LINE__, __FILE__)
+#define accept(sock,addr,len) \
 curl_dbg_accept(sock, addr, len, __LINE__, __FILE__)
 #ifdef HAVE_ACCEPT4
 #undef accept4 /* for those with accept4 as a macro */
-#define accept4(sock,addr,len,flags)\
- curl_dbg_accept4(sock, addr, len, flags, __LINE__, __FILE__)
+#define accept4(sock,addr,len,flags) \
 curl_dbg_accept4(sock, addr, len, flags, __LINE__, __FILE__)
 #endif
 #ifdef HAVE_SOCKETPAIR
-#define socketpair(domain,type,protocol,socket_vector)\
- curl_dbg_socketpair((int)domain, type, protocol, socket_vector, \
-                     __LINE__, __FILE__)
+#define socketpair(domain,type,protocol,socket_vector) \
 curl_dbg_socketpair((int)domain, type, protocol, socket_vector, \
+                      __LINE__, __FILE__)
 #endif
 
 /* sclose is probably already defined, redefine it! */