changeset 3614:67703a43b23f HEAD

minor cleanup
author Timo Sirainen <tss@iki.fi>
date Sun, 25 Sep 2005 13:20:40 +0300
parents c4c1b538d8d0
children 0a885029543b
files src/lib/ioloop-poll.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib/ioloop-poll.c	Sun Sep 25 13:19:51 2005 +0300
+++ b/src/lib/ioloop-poll.c	Sun Sep 25 13:20:40 2005 +0300
@@ -42,9 +42,9 @@
         p_free(ioloop->pool, ioloop->handler_context);
 }
 
-#define IO_POLL_ERROR (POLLERR|POLLHUP|POLLNVAL)
-#define IO_POLL_INPUT (POLLIN|POLLPRI|IO_POLL_ERROR)
-#define IO_POLL_OUTPUT (POLLOUT|IO_POLL_ERROR)
+#define IO_POLL_ERROR (POLLERR | POLLHUP | POLLNVAL)
+#define IO_POLL_INPUT (POLLIN | POLLPRI | IO_POLL_ERROR)
+#define IO_POLL_OUTPUT (POLLOUT | IO_POLL_ERROR)
 
 void io_loop_handle_add(struct ioloop *ioloop, struct io *io)
 {