summaryrefslogtreecommitdiff
path: root/evport.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2010-02-18 17:08:50 -0500
committerNick Mathewson <nickm@torproject.org>2010-02-18 17:08:50 -0500
commit8fdf09c09d2f92d7bc1a333b24a6490f65d5369c (patch)
tree357977aff3f8fca18005791b23e44a7020f4c944 /evport.c
parent7515de91fe6c721d304d06cedc8af8d334916eaf (diff)
downloadlibevent-8fdf09c09d2f92d7bc1a333b24a6490f65d5369c.tar.gz
Clean up formatting: Disallow space-before-tab.
Diffstat (limited to 'evport.c')
-rw-r--r--evport.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/evport.c b/evport.c
index 1baac621..2a703774 100644
--- a/evport.c
+++ b/evport.c
@@ -100,9 +100,9 @@ struct fd_info {
(FDI_HAS_WRITE(fdi) ? POLLOUT : 0)
struct evport_data {
- int ed_port; /* event port for system events */
- int ed_nevents; /* number of allocated fdi's */
- struct fd_info *ed_fds; /* allocated fdi table */
+ int ed_port; /* event port for system events */
+ int ed_nevents; /* number of allocated fdi's */
+ struct fd_info *ed_fds; /* allocated fdi table */
/* fdi's that we need to reassoc */
int ed_pending[EVENTS_PER_GETN]; /* fd's with pending events */
};
@@ -110,7 +110,7 @@ struct evport_data {
static void* evport_init (struct event_base *);
static int evport_add(struct event_base *, int fd, short old, short events, void *);
static int evport_del(struct event_base *, int fd, short old, short events, void *);
-static int evport_dispatch (struct event_base *, struct timeval *);
+static int evport_dispatch (struct event_base *, struct timeval *);
static void evport_dealloc (struct event_base *);
const struct eventop evportops = {