summaryrefslogtreecommitdiff
path: root/libcr/coroutine.c
diff options
context:
space:
mode:
Diffstat (limited to 'libcr/coroutine.c')
-rw-r--r--libcr/coroutine.c2
1 files changed, 1 insertions, 1 deletions
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));