diff options
author | sotech117 <michael_foiani@brown.edu> | 2023-09-26 06:51:57 +0000 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2023-09-26 06:51:57 +0000 |
commit | f06e9e954d0ff0ee56c852ae717bc62e460eeed1 (patch) | |
tree | 66b192852d927f3c58c4a13f69776e9910c54723 /client.c | |
parent | 87a678c2da2722ebb4f1dd540fc1ac422defb2af (diff) |
clean up some final bugs
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -313,7 +313,7 @@ void *command_line_routine(void* args) { int inputInt = atoi(input); if (input[0] != '0' && inputInt == 0) { // if we're in here, it's ~likely~ not a number (ik it's not perfect, sorry :/) - printf("unknown command: %si", input); + printf("unknown command: %s", input); printf("snowcast_control> "); fflush(stdout); continue; |