diff options
Diffstat (limited to 'wk3/pset')
-rw-r--r-- | wk3/pset/runoff/runoff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wk3/pset/runoff/runoff.c b/wk3/pset/runoff/runoff.c index 6fdfbe5..a193adf 100644 --- a/wk3/pset/runoff/runoff.c +++ b/wk3/pset/runoff/runoff.c @@ -168,7 +168,7 @@ bool print_winner(void) { if (candidates[i].votes > (voter_count / 2)) { - printf("%s", candidates[i].name); + printf("%s\n", candidates[i].name); } } return false; |