aboutsummaryrefslogtreecommitdiff
path: root/util-linux/pivot_root.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/pivot_root.c')
-rw-r--r--util-linux/pivot_root.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/pivot_root.c b/util-linux/pivot_root.c
index ba26b9c58..39453a261 100644
--- a/util-linux/pivot_root.c
+++ b/util-linux/pivot_root.c
@@ -16,10 +16,10 @@ extern int pivot_root(const char * new_root,const char * put_old);
int pivot_root_main(int argc, char **argv)
{
if (argc != 3)
- show_usage();
+ bb_show_usage();
if (pivot_root(argv[1],argv[2]) < 0)
- perror_msg_and_die("pivot_root");
+ bb_perror_msg_and_die("pivot_root");
return EXIT_SUCCESS;