diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-07-08 15:12:35 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2013-07-08 15:12:35 +0300 |
commit | 70e45998adc0bc7ab37f3cb86bba25a32b8aa0a6 (patch) | |
tree | 210b8520d23919f6490a2d40517b9c3ed8fbfc5f /src | |
parent | 01c1fae327c7ad5f3ed03513e7032d4875d26eb1 (diff) | |
download | apk-tools-70e45998adc0bc7ab37f3cb86bba25a32b8aa0a6.tar.gz apk-tools-70e45998adc0bc7ab37f3cb86bba25a32b8aa0a6.tar.bz2 apk-tools-70e45998adc0bc7ab37f3cb86bba25a32b8aa0a6.tar.xz apk-tools-70e45998adc0bc7ab37f3cb86bba25a32b8aa0a6.zip |
apk: give more space for applet descriptions on generic help
Diffstat (limited to 'src')
-rw-r--r-- | src/apk.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -149,7 +149,7 @@ static int usage(struct apk_applet *applet) printf("\nThe following commands are available:\n"); for (a = &__start_apkapplets; a < &__stop_apkapplets; a++) { - struct apk_indent indent = { .indent = 26 }; + struct apk_indent indent = { .indent = 12 }; indent.x = printf(" %-*s", indent.indent - 3, (*a)->name); apk_print_indented_words(&indent, (*a)->help); |