From fadfc47abd5f8fe0757244b3b9eb5a1ae78e0dce Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Thu, 23 Feb 2023 14:32:26 +0100 Subject: Fix minor regression in coroutine.h. --- include/stc/algo/coroutine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stc/algo/coroutine.h b/include/stc/algo/coroutine.h index cf7acc16..967928b2 100644 --- a/include/stc/algo/coroutine.h +++ b/include/stc/algo/coroutine.h @@ -115,7 +115,7 @@ typedef struct ccoHandle { } \ struct ccoContext *ctx = *_ccoparam; \ switch (ctx->cco_line) { \ - case 0: __VA_ARGS__ break; \ + case 0:; __VA_ARGS__ break; \ default: assert(!"missing cco_finish:"); \ } \ free(ctx), *_ccoparam = NULL -- cgit v1.2.3