diff options
author | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-12 17:02:35 +0000 |
---|---|---|
committer | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-12 17:02:35 +0000 |
commit | 6a0c1de213cb8475ee435ff216f4037080926378 (patch) | |
tree | 088bc5b6e06d693ad8ca3eba078c0f3a8e302a24 /umount.c | |
parent | 7b40def2e7abcaa81d71d4bc7717d184c329eb2d (diff) | |
download | busybox-w32-6a0c1de213cb8475ee435ff216f4037080926378.tar.gz busybox-w32-6a0c1de213cb8475ee435ff216f4037080926378.tar.bz2 busybox-w32-6a0c1de213cb8475ee435ff216f4037080926378.zip |
Always report the applet name when doing error reporting.
git-svn-id: svn://busybox.net/trunk/busybox@831 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'umount.c')
-rw-r--r-- | umount.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -201,7 +201,7 @@ static int do_umount(const char *name, int useMtab) | |||
201 | if (status != 0 && doForce == TRUE) { | 201 | if (status != 0 && doForce == TRUE) { |
202 | status = umount2(blockDevice, MNT_FORCE); | 202 | status = umount2(blockDevice, MNT_FORCE); |
203 | if (status != 0) { | 203 | if (status != 0) { |
204 | fatalError("umount: forced umount of %s failed!\n", blockDevice); | 204 | fatalError("forced umount of %s failed!\n", blockDevice); |
205 | } | 205 | } |
206 | } | 206 | } |
207 | #endif | 207 | #endif |