dmesg: fix usage()

This commit is contained in:
Karel Zak 2013-01-30 15:36:21 +01:00
parent 2e4c5b48b6
commit 0a86a1a66c
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ static void __attribute__((__noreturn__)) usage(FILE *out)
fprintf(stderr, " %7s - %s\n",
level_names[i].name,
_(level_names[i].help));
fputc(USAGE_SEPARATOR, out);
fputs(USAGE_SEPARATOR, out);
fprintf(out, USAGE_MAN_TAIL("dmesg(q)"));
exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS);
}