From ba3248224eb2b6a1e5098c788bd2029444d5140a Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 11 Mar 2023 10:29:38 -0500 Subject: [PATCH] Add C coverage exclsion required by unbreaking the property setter. --- saveresume.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saveresume.c b/saveresume.c index d668543..05e12b7 100644 --- a/saveresume.c +++ b/saveresume.c @@ -230,7 +230,7 @@ bool is_valid(struct game_t valgame) case VASE: case CHAIN: if (valgame.prop[obj] == 2) // There are multiple different states, but it's convenient to clump them together - continue; + continue; // LCOV_EXCL_LINE /* FALLTHRU */ case BEAR: if (valgame.prop[BEAR] == CONTENTED_BEAR || valgame.prop[BEAR] == BEAR_DEAD) -- 2.31.1