format
authorChristian Grothoff <christian@grothoff.org>
Tue, 14 Jun 2011 11:58:51 +0000 (11:58 +0000)
committerChristian Grothoff <christian@grothoff.org>
Tue, 14 Jun 2011 11:58:51 +0000 (11:58 +0000)
src/util/network.c

index 5ff49b1cae10ed3132832bb9a6dd24b4e53f6453..49e50101ba8f750e77f670e6b7a71b34355ded92 100644 (file)
@@ -560,18 +560,18 @@ GNUNET_NETWORK_socket_send (const struct GNUNET_NETWORK_Handle * desc,
 #ifdef MSG_DONTWAIT
   flags |= MSG_DONTWAIT;
 
-#endif /*  */
+#endif
 #ifdef MSG_NOSIGNAL
   flags |= MSG_NOSIGNAL;
 
-#endif /*  */
+#endif
   ret = send (desc->fd, buffer, length, flags);
 
 #ifdef MINGW
   if (SOCKET_ERROR == ret)
     SetErrnoFromWinsockError (WSAGetLastError ());
 
-#endif /*  */
+#endif
   return ret;
 }