From: Eric Andersen Date: Fri, 7 Mar 2003 17:59:32 +0000 (-0000) Subject: Save a few bytes and remove a redundant string X-Git-Tag: 1_00_pre1~175 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1bc5fa8c0cade0a70c106b2770e9042239fd618f;p=oweals%2Fbusybox.git Save a few bytes and remove a redundant string --- diff --git a/util-linux/dmesg.c b/util-linux/dmesg.c index 56e0771f0..aa8eb95c9 100644 --- a/util-linux/dmesg.c +++ b/util-linux/dmesg.c @@ -98,5 +98,5 @@ all_done: #endif return EXIT_SUCCESS; die_the_death: - perror_msg_and_die("klogctl"); + perror_msg_and_die(NULL); }