From b4ee949b84988077d3dde3415398107f036ea595 Mon Sep 17 00:00:00 2001 From: cancel Date: Tue, 21 Jan 2020 20:15:33 +0900 Subject: [PATCH] Cleanup --- thirdparty/oso.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/thirdparty/oso.c b/thirdparty/oso.c index 6f7aa52..a540b30 100644 --- a/thirdparty/oso.c +++ b/thirdparty/oso.c @@ -22,8 +22,7 @@ #define OSO_CAP_MAX (SIZE_MAX - (sizeof(oso_header) + 1)) typedef struct oso { - size_t len; - size_t cap; + size_t len, cap; } oso_header; OSO_INTERNAL oso *oso_impl_reallochdr(oso_header *hdr, size_t new_cap) {