Fix evmap indentation to be less stupid.

svn:r1185
This commit is contained in:
Nick Mathewson 2009-04-17 06:56:36 +00:00
parent 9097c95b6e
commit 64a37e61a1

View File

@ -163,7 +163,8 @@ void evmap_io_clear(struct event_io_map *ctx)
do { \
if ((map)->entries[slot] == NULL) { \
assert(ctor != NULL); \
(map)->entries[slot]=mm_calloc(1,sizeof(struct type)+fdinfo_len);\
(map)->entries[slot] = \
mm_calloc(1,sizeof(struct type)+fdinfo_len); \
assert((map)->entries[slot] != NULL); \
(ctor)((struct type *)(map)->entries[slot]); \
} \