Missing ;. From eric@ ages ago.

pull/1/head
Nicholas Marriott 2009-10-29 08:59:17 +00:00
parent dc3fdc8dc7
commit e8b25188ad
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@
#define ARRAY_CONCAT(a, b) do { \
ARRAY_ENSURE(a, (b)->num); \
memcpy((a)->list + (a)->num, (b)->list, (b)->num * ARRAY_ITEMSIZE(a)) \
memcpy((a)->list + (a)->num, (b)->list, (b)->num * ARRAY_ITEMSIZE(a)); \
(a)->num += (b)->num; \
} while (0)