aboutsummaryrefslogtreecommitdiff
path: root/src/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.c')
-rw-r--r--src/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.c b/src/common.c
index f3131e0..ca08f07 100644
--- a/src/common.c
+++ b/src/common.c
@@ -16,6 +16,6 @@ void print_help(const struct Command* commands, const size_t size)
for (size_t i = 0; i < size; ++i)
{
- printf("\t%-*s\t%s\n", longestCommand, commands[i].name, commands[i].description);
+ printf("\t%-*s\t %s\n", longestCommand, commands[i].name, commands[i].description);
}
}