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) {