array: remove spurious semi colon
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
88891a21e8
commit
e3ed35e853
|
@ -78,7 +78,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#define DO_ARRAY(type_t, pfx, dtor) \
|
#define DO_ARRAY(type_t, pfx, dtor) \
|
||||||
ARRAY_TYPE(type_t, pfx); ARRAY_FUNCS(type_t, pfx, dtor)
|
ARRAY_TYPE(type_t, pfx) \
|
||||||
|
ARRAY_FUNCS(type_t, pfx, dtor)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|
||||||
|
|
Loading…
Reference in New Issue