diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-03-07 17:59:32 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-03-07 17:59:32 +0000 |
commit | 3bf6d3c64c77e62273ad91ba98317da43e1210b4 (patch) | |
tree | 2cba8817dd7b58aa479f6223f641f131ef0af726 | |
parent | 98247c5b3b0677e5aad041a7d24e14be4b875ee5 (diff) | |
download | busybox-w32-3bf6d3c64c77e62273ad91ba98317da43e1210b4.tar.gz busybox-w32-3bf6d3c64c77e62273ad91ba98317da43e1210b4.tar.bz2 busybox-w32-3bf6d3c64c77e62273ad91ba98317da43e1210b4.zip |
Save a few bytes and remove a redundant string
git-svn-id: svn://busybox.net/trunk/busybox@6716 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | util-linux/dmesg.c | 2 |
1 files changed, 1 insertions, 1 deletions
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: | |||
98 | #endif | 98 | #endif |
99 | return EXIT_SUCCESS; | 99 | return EXIT_SUCCESS; |
100 | die_the_death: | 100 | die_the_death: |
101 | perror_msg_and_die("klogctl"); | 101 | perror_msg_and_die(NULL); |
102 | } | 102 | } |