From f2978da2ca86a9eff1bed2287801e99f131ffd8d Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Fri, 4 Oct 2024 08:08:10 -0600 Subject: fixup array_len --- libcr/coroutine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcr') diff --git a/libcr/coroutine.c b/libcr/coroutine.c index bc67cbb..fac0cd7 100644 --- a/libcr/coroutine.c +++ b/libcr/coroutine.c @@ -340,7 +340,7 @@ static cid_t coroutine_running = 0; /** Return `n` rounded up to the nearest multiple of `d` */ #define round_up(n, d) ( ( ((n)+(d)-1) / (d) ) * (d) ) -#define array_len(arr) (sizeof(arr)/sizeof(arr[0])) +#define array_len(arr) (sizeof(arr)/sizeof((arr)[0])) static inline const char* coroutine_state_str(enum coroutine_state state) { assert(state < array_len(coroutine_state_strs)); -- cgit v1.2.3-2-g168b