darray: fix indentation

Signed-off-by: Ran Benita <ran234@gmail.com>
master
Ran Benita 2014-02-12 11:07:39 +02:00
parent 5bd273a724
commit d3d55f1c4e
1 changed files with 2 additions and 2 deletions

View File

@ -156,8 +156,8 @@ typedef darray (unsigned long) darray_ulong;
#define darray_growalloc(arr, need) do { \
unsigned __need = (need); \
if (__need > (arr).alloc) \
darray_realloc(arr, darray_next_alloc((arr).alloc, __need, \
sizeof(*(arr).item))); \
darray_realloc(arr, darray_next_alloc((arr).alloc, __need, \
sizeof(*(arr).item))); \
} while (0)
static inline unsigned