aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-03-07 17:59:32 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-03-07 17:59:32 +0000
commit3bf6d3c64c77e62273ad91ba98317da43e1210b4 (patch)
tree2cba8817dd7b58aa479f6223f641f131ef0af726
parent98247c5b3b0677e5aad041a7d24e14be4b875ee5 (diff)
downloadbusybox-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.c2
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;
100die_the_death: 100die_the_death:
101 perror_msg_and_die("klogctl"); 101 perror_msg_and_die(NULL);
102} 102}