diff options
Diffstat (limited to 'wk3/pset')
-rw-r--r-- | wk3/pset/plurality/plurality.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wk3/pset/plurality/plurality.c b/wk3/pset/plurality/plurality.c index ea8ba9a..c8db427 100644 --- a/wk3/pset/plurality/plurality.c +++ b/wk3/pset/plurality/plurality.c @@ -93,7 +93,7 @@ void print_winner(void) //put it at the start of the new list winners[0] = candidates[i].name; } else if (winners[0] == candidates[i].name) { - for (int j = 1; j < candidate_count - 1; j++) + for (int j = 1;j < candidate_count - 1; j++) } } return; |