diff options
Diffstat (limited to 'util-linux/umount.c')
-rw-r--r-- | util-linux/umount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/umount.c b/util-linux/umount.c index 0662cea1b..901c9094f 100644 --- a/util-linux/umount.c +++ b/util-linux/umount.c | |||
@@ -69,7 +69,7 @@ int umount_main(int argc UNUSED_PARAM, char **argv) | |||
69 | fp = setmntent(bb_path_mtab_file, "r"); | 69 | fp = setmntent(bb_path_mtab_file, "r"); |
70 | if (!fp) { | 70 | if (!fp) { |
71 | if (opt & OPT_ALL) | 71 | if (opt & OPT_ALL) |
72 | bb_error_msg_and_die("can't open %s", bb_path_mtab_file); | 72 | bb_error_msg_and_die("can't open '%s'", bb_path_mtab_file); |
73 | } else { | 73 | } else { |
74 | while (getmntent_r(fp, &me, path, PATH_MAX)) { | 74 | while (getmntent_r(fp, &me, path, PATH_MAX)) { |
75 | /* Match fstype if passed */ | 75 | /* Match fstype if passed */ |