commit: b377edf73ec277e2d85d102a325f789663720142 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Sun Nov 29 09:12:41 2020 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org> CommitDate: Sun Nov 29 09:12:41 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=b377edf7
main: fix alignment wrt qmanifest applet, bug #757540 Bug: https://bugs.gentoo.org/757540 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org> main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index c8b0429..816cd6c 100644 --- a/main.c +++ b/main.c @@ -109,7 +109,7 @@ usage(int status, const char *flags, struct option const opts[], fprintf(fp, "%scurrently defined applets:%s\n", GREEN, NORM); for (i = 0; applets[i].desc; ++i) if (applets[i].func) - fprintf(fp, " %s%8s%s %s%-16s%s%s:%s %s\n", + fprintf(fp, " %s%9s%s %s%-16s%s%s:%s %s\n", YELLOW, applets[i].name, NORM, DKBLUE, applets[i].opts, NORM, RED, NORM, _(applets[i].desc));
