From 7f76c45fc5fff521e6b93fc037d925209a174e59 Mon Sep 17 00:00:00 2001 From: Alexey Fedoseev Date: Sat, 23 Mar 2024 20:37:47 +0300 Subject: [PATCH] correct usage program output --- test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.c b/test.c index 8109dbf..5bec0bb 100644 --- a/test.c +++ b/test.c @@ -52,7 +52,7 @@ size_t command_count = sizeof(commands) / sizeof(char*); static void print_usage(const char* name) { unsigned int i; - fprintf(stderr, "%s [-f ] [-t -o ] \n\n", name); + fprintf(stderr, "%s [-f ] [-t -o ] \n\n", name); fprintf(stderr, "Supported commands:\n"); for (i = 0; i < command_count; i++) { fprintf(stderr, " %-20s %s\n", commands[i], command_descr[i]);