From 464851fac1284095e33b6f00500d000ecdf2394d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 12 Mar 2021 21:53:11 +0100 Subject: [PATCH] client: repair usage output --- client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client.c b/client.c index 2500ee2d..14893a53 100644 --- a/client.c +++ b/client.c @@ -43,8 +43,8 @@ version_and_features(void) static void print_usage(const char *prog_name) { - printf("Usage: %s [OPTIONS...]", prog_name); - printf("Usage: %s [OPTIONS...] [ARGS...]\n", prog_name); + printf("Usage: %s [OPTIONS...]\n", prog_name); + printf("Usage: %s [OPTIONS...] command [ARGS...]\n", prog_name); printf("\n"); printf("Options:\n"); printf(" -t,--term=TERM value to set the environment variable TERM to (foot)\n"