diff options
author | Carlos Maniero <carlosmaniero@gmail.com> | 2023-04-14 13:01:28 -0300 |
---|---|---|
committer | Johnny Richard <johnny@johnnyrichard.com> | 2023-04-14 18:09:06 +0200 |
commit | f5731b3f56c7341da5f4a74cd1de57401ef427a5 (patch) | |
tree | b6fc6af185442d3fbec8734567870aa056be016f | |
parent | ce1ed0fa09f42400ff2803426c0d7b3c881b2046 (diff) |
cli: Add missing LF on print_usage
Signed-off-by: Carlos Maniero <carlosmaniero@gmail.com>
-rw-r--r-- | pipac.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |