From 4382d5aaf86ccfc09c38f5ede0e1fa06beb04684 Mon Sep 17 00:00:00 2001 From: Vincent Douillet Date: Sat, 3 Dec 2022 22:00:15 +0100 Subject: day 2: fix warning when compiling with -O2 --- 02.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/02.c b/02.c index 8ca0423..bf636a4 100644 --- a/02.c +++ b/02.c @@ -104,6 +104,8 @@ int compute_round_score_p2(struct round_p2* round) { else me = (enum draw) ((int) opponent + 1); break; + default: + err(2, "unknown result type"); } return (int) me + (int) result; } -- cgit v1.2.3