summaryrefslogtreecommitdiffstats
path: root/array.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-10-29 08:59:17 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-10-29 08:59:17 +0000
commite8b25188ade1b9a680ad8195a501e23a017be691 (patch)
treef18b2ef7a590ade1145a0217604fe0b23217a81c /array.h
parentdc3fdc8dc7c45fc4924ee4eeb8b6c7c6a80e41f1 (diff)
Missing ;. From eric@ ages ago.
Diffstat (limited to 'array.h')
-rw-r--r--array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/array.h b/array.h
index c5ed3d02..d48dbacb 100644
--- a/array.h
+++ b/array.h
@@ -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)