diff options
author | sotech117 <michael_foiani@brown.edu> | 2023-09-23 22:04:52 +0000 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2023-09-23 22:04:52 +0000 |
commit | 9dfb0307da9afb888f9a122399ab87633eb2c3ab (patch) | |
tree | 6dfff1d4c26a8533e17d7e9608dcac48c35c198c /client.c | |
parent | c9b0771b8052039106ccf6346b8d39c8a8167622 (diff) |
print type of station?
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -155,7 +155,7 @@ void *reply_thread_routine(void* args) { exit(1); } num_stations = ntohs(num_stations); - printf("Welcome to Snowcast! The server has %d stations.\n", num_stations); + printf("Welcome to Snowcast! The server has %u stations.\n", num_stations); printf("Enter a number to change to it's station. Click q to end stream.\n"); continue; } |