From: Sami Kerola Date: Tue, 2 Apr 2013 19:42:48 +0000 (+0100) Subject: dmesg: fix usage() output consistancy X-Git-Tag: v2.23-rc2~58 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=963ac50734a60a771da972b62819acf4b187141c;p=thirdparty%2Futil-linux.git dmesg: fix usage() output consistancy Possible facilities and levels are meant to be printed to same file as the rest of the usage output. Signed-off-by: Sami Kerola --- diff --git a/sys-utils/dmesg.c b/sys-utils/dmesg.c index 3387ea4b97..6c7f7eda07 100644 --- a/sys-utils/dmesg.c +++ b/sys-utils/dmesg.c @@ -254,13 +254,13 @@ static void __attribute__((__noreturn__)) usage(FILE *out) fputs(USAGE_VERSION, out); fputs(_("\nSupported log facilities:\n"), out); for (i = 0; i < ARRAY_SIZE(level_names); i++) - fprintf(stderr, " %7s - %s\n", + fprintf(out, " %7s - %s\n", facility_names[i].name, _(facility_names[i].help)); fputs(_("\nSupported log levels (priorities):\n"), out); for (i = 0; i < ARRAY_SIZE(level_names); i++) - fprintf(stderr, " %7s - %s\n", + fprintf(out, " %7s - %s\n", level_names[i].name, _(level_names[i].help)); fputs(USAGE_SEPARATOR, out);