aboutsummaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2023-09-26 06:52:14 +0000
committersotech117 <michael_foiani@brown.edu>2023-09-26 06:52:14 +0000
commit448b84240f7d2e5a33d35c892ad8fbabded7feba (patch)
tree66b192852d927f3c58c4a13f69776e9910c54723 /client.c
parent87a678c2da2722ebb4f1dd540fc1ac422defb2af (diff)
parentf06e9e954d0ff0ee56c852ae717bc62e460eeed1 (diff)
Merge branch 'optimizations'
Diffstat (limited to 'client.c')
-rw-r--r--client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c
index dbbc204..07e413f 100644
--- a/client.c
+++ b/client.c
@@ -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;