From 39f29df83514a54312b246328a4467d4da594385 Mon Sep 17 00:00:00 2001 From: ninya9k <> Date: Wed, 15 Nov 2023 14:25:09 +0000 Subject: [PATCH] fluff --- uttt.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/uttt.c b/uttt.c index 8dd30b0..769bbfd 100644 --- a/uttt.c +++ b/uttt.c @@ -481,7 +481,6 @@ int ut_sockgetpos(const struct ut_state *state, int sock, int *y, int *x, bool r } int ut_local_game(struct ut_state *state) { - int x, y; for(;;) { int r = 4, c = 4; @@ -496,7 +495,7 @@ int ut_local_game(struct ut_state *state) { } else { - ut_cursprintf("%c Wins!\n", (int)w); + ut_cursprintf("%c wins!\n", (int)w); } break; } @@ -523,7 +522,7 @@ int ut_network_game(struct ut_state *state, int sock, char player, bool readable } else { - ut_cursprintf("%c Wins!\n", (int)w); + ut_cursprintf("%c wins!\n", (int)w); if (readable) {ut_dprintf(sock, "\n%c wins!\n", (int)w);} close(sock); }