Use two separate strings for the two different forms of setarch, instead of filling in an untranslated word into a single string. Also use the standard angular brackets for nonliteral arguments. Signed-off-by: Benno Schulenberg <bensberg@xxxxxxxxxxxxx> --- sys-utils/setarch.c | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/sys-utils/setarch.c b/sys-utils/setarch.c index 0943038..518eaca 100644 --- a/sys-utils/setarch.c +++ b/sys-utils/setarch.c @@ -91,9 +91,10 @@ enum { static void __attribute__((__noreturn__)) show_help(void) { fputs(USAGE_HEADER, stdout); - printf(_(" %s%s [options] [program [program arguments]]\n"), - program_invocation_short_name, - !strcmp(program_invocation_short_name, "setarch") ? " <arch>" : ""); + if (!strcmp(program_invocation_short_name, "setarch")) + printf(_(" %s <arch> [options] [<program> [<argument>...]]\n"), program_invocation_short_name); + else + printf(_(" %s [options] [<program> [<argument>...]]\n"), program_invocation_short_name); fputs(USAGE_SEPARATOR, stdout); fputs(_("Change the reported architecture and set personality flags.\n"), stdout); -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html