summaryrefslogtreecommitdiff
authorDenys Vlasenko <vda.linux@googlemail.com>2011-07-08 04:23:08 (GMT)
committer Denys Vlasenko <vda.linux@googlemail.com>2011-07-08 04:23:08 (GMT)
commitdb43d3d418fd228367594c926f206e7d7fe7b1ab (patch)
tree0fbafead4275c4ee7a79d683fa834a74b957f0e9
parentb5de0c12d6f1803ed6d161c9a56aab99412d3b97 (diff)
downloadbusybox-db43d3d418fd228367594c926f206e7d7fe7b1ab.zip
busybox-db43d3d418fd228367594c926f206e7d7fe7b1ab.tar.gz
busybox-db43d3d418fd228367594c926f206e7d7fe7b1ab.tar.bz2
halt: perror_msg_and_die needs bb_ prefix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat
-rw-r--r--init/halt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/halt.c b/init/halt.c
index 1aac0fa..7974adb 100644
--- a/init/halt.c
+++ b/init/halt.c
@@ -159,7 +159,7 @@ int halt_main(int argc UNUSED_PARAM, char **argv)
which == 2 ? "6" : "0",
(char *)NULL
);
- perror_msg_and_die("can't execute '%s'",
+ bb_perror_msg_and_die("can't execute '%s'",
CONFIG_TELINIT_PATH);
}
}