summaryrefslogtreecommitdiff
path: root/arr.c
diff options
context:
space:
mode:
Diffstat (limited to 'arr.c')
-rw-r--r--arr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arr.c b/arr.c
index ab92319..f214fe4 100644
--- a/arr.c
+++ b/arr.c
@@ -2,7 +2,7 @@
typedef struct {
size_t len;
size_t cap;
- max_align_t data[];
+ MaxAlign data[];
} ArrHeader;
static inline ArrHeader *arr_hdr(void *arr) {