diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/dynarr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dynarr.h b/include/dynarr.h index 23705c9..f346aae 100644 --- a/include/dynarr.h +++ b/include/dynarr.h @@ -23,11 +23,11 @@ T *buf; \ size_t len, cap; \ alloc_fn alloc; \ - void *ctx; + void *ctx #define dynarr(T) \ struct { \ - dafields(T) \ + dafields(T); \ } #define DAPUSH(da, x) \ |