commit 0288a29c14e9c21541b8c6ad60bd8eb8bb3750f5
parent c4ed0ef51338cb8eddb396d1b7d8f0bd349bd8f5
Author: Francesco Saccone <francesco@francescosaccone.com>
Date: Sun, 30 Mar 2025 20:27:57 +0200
fix: add newline at the end of usage print message
Signed-off-by: Francesco Saccone <francesco@francescosaccone.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hermes.c b/hermes.c
@@ -8,7 +8,7 @@
void
print_usage(char *program_name) {
- printf("usage: %s [-p port] [-i file]", program_name);
+ printf("usage: %s [-p port] [-i file]\n", program_name);
}
int