diff options
Diffstat (limited to 'coreutils/df.c')
-rw-r--r-- | coreutils/df.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/df.c b/coreutils/df.c index 7eb82cd46..6fe8e2fba 100644 --- a/coreutils/df.c +++ b/coreutils/df.c | |||
@@ -100,7 +100,7 @@ int df_main(int argc, char **argv) | |||
100 | mount_point = mount_entry->mnt_dir; | 100 | mount_point = mount_entry->mnt_dir; |
101 | 101 | ||
102 | if (statfs(mount_point, &s) != 0) { | 102 | if (statfs(mount_point, &s) != 0) { |
103 | bb_perror_msg("%s", mount_point); | 103 | bb_simple_perror_msg(mount_point); |
104 | goto SET_ERROR; | 104 | goto SET_ERROR; |
105 | } | 105 | } |
106 | 106 | ||