]> granicus.if.org Git - libevent/commitdiff
reindent macros in util-internal.h
authorNick Mathewson <nickm@torproject.org>
Sun, 12 Apr 2009 22:02:12 +0000 (22:02 +0000)
committerNick Mathewson <nickm@torproject.org>
Sun, 12 Apr 2009 22:02:12 +0000 (22:02 +0000)
svn:r1159

util-internal.h

index 34ac6870e7d7907ef6b871c29020954913d1b2fc..957e431abf66ba548bd121dbadd9e9eed1e7fb8f 100644 (file)
@@ -58,15 +58,15 @@ extern "C" {
 
 #else
 
-#define EVUTIL_ERR_RW_RETRIABLE(e)                                                             \
-       ((e) == WSAEWOULDBLOCK ||                                                                       \
-        (e) == WSAEINTR)
+#define EVUTIL_ERR_RW_RETRIABLE(e)                                     \
+       ((e) == WSAEWOULDBLOCK ||                                       \
+           (e) == WSAEINTR)
 
-#define EVUTIL_ERR_CONNECT_RETRIABLE(e)                        \
+#define EVUTIL_ERR_CONNECT_RETRIABLE(e)                                        \
        ((e) == WSAEWOULDBLOCK ||                                       \
-        (e) == WSAEINTR ||                                                     \
-        (e) == WSAEINPROGRESS ||                                       \
-        (e) == WSAEINVAL)
+           (e) == WSAEINTR ||                                          \
+           (e) == WSAEINPROGRESS ||                                    \
+           (e) == WSAEINVAL)
 
 #define EVUTIL_ERR_ACCEPT_RETRIABLE(e)                 \
        EVUTIL_ERR_RW_RETRIABLE(e)