summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Maniero <carlosmaniero@gmail.com>2023-04-14 13:01:28 -0300
committerJohnny Richard <johnny@johnnyrichard.com>2023-04-14 18:09:06 +0200
commitf5731b3f56c7341da5f4a74cd1de57401ef427a5 (patch)
treeb6fc6af185442d3fbec8734567870aa056be016f
parentce1ed0fa09f42400ff2803426c0d7b3c881b2046 (diff)
cli: Add missing LF on print_usage
Signed-off-by: Carlos Maniero <carlosmaniero@gmail.com>
-rw-r--r--pipac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pipac.c b/pipac.c
index f51f13e..a93e77f 100644
--- a/pipac.c
+++ b/pipac.c
@@ -224,7 +224,7 @@ lexer_next_token(lexer_t *lexer, token_t *token)
void
print_usage()
{
- fputs("pipac <filename.pipa>", stderr);
+ fputs("pipac <filename.pipa>\n", stderr);
}
int