From b74b5c107c207e9bea7c561f3873edbba67f3afe Mon Sep 17 00:00:00 2001 From: kukemuna Date: Tue, 27 Feb 2024 20:47:09 +0200 Subject: [PATCH] automated commit by submit50 --- runoff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runoff.c b/runoff.c index 40a8ced..3d0d692 100644 --- a/runoff.c +++ b/runoff.c @@ -1,7 +1,7 @@ #include +#include #include #include -#include // Max voters and candidates #define MAX_VOTERS 100 @@ -194,7 +194,7 @@ bool is_tie(int min) { if (candidates[i].votes == min && !candidates[i].eliminated) { - tie = true;; + tie = true; } else if (candidates[i].votes != min && !candidates[i].eliminated) {