diff options
author | Josh Triplett <josh@freedesktop.org> | 2008-05-28 12:26:13 -0700 |
---|---|---|
committer | Josh Triplett <josh@freedesktop.org> | 2008-05-28 12:26:13 -0700 |
commit | 424ad131b7d97d6196181c31677655e6d52b41df (patch) | |
tree | cd0ecca0ac98627e5889cce57b2a329ade556f5c /src/xcb_in.c | |
parent | 6532c715c3805128b9976ab208f1426f691056a2 (diff) |
Fix variable declaration formatting
Diffstat (limited to 'src/xcb_in.c')
-rw-r--r-- | src/xcb_in.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xcb_in.c b/src/xcb_in.c index 27ccc99..31a1e60 100644 --- a/src/xcb_in.c +++ b/src/xcb_in.c @@ -77,8 +77,8 @@ static void wake_up_next_reader(xcb_connection_t *c) static int read_packet(xcb_connection_t *c) { xcb_generic_reply_t genrep; - int length = 32, - eventlength = 0; /* length after first 32 bytes for GenericEvents */ + int length = 32; + int eventlength = 0; /* length after first 32 bytes for GenericEvents */ void *buf; pending_reply *pend = 0; struct event_list *event; |