Signed-off-by: Francesco Cosoleto <cosoleto@xxxxxxxxx> --- sys-utils/renice.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-utils/renice.c b/sys-utils/renice.c index ff4c443..ef986d4 100644 --- a/sys-utils/renice.c +++ b/sys-utils/renice.c @@ -132,14 +132,14 @@ main(int argc, char **argv) register struct passwd *pwd = getpwnam(*argv); if (pwd == NULL) { - warnx(_("%s: unknown user"), *argv); + warnx(_("unknown user %s"), *argv); continue; } who = pwd->pw_uid; } else { who = strtol(*argv, &endptr, 10); if (who < 0 || *endptr) { - warnx(_("%s: bad value"), *argv); + warnx(_("bad value %s"), *argv); continue; } } -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe util-linux-ng" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html