diff options
author | Matt Kraai <kraai@debian.org> | 2000-12-22 01:48:07 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2000-12-22 01:48:07 +0000 |
commit | a9819b290848e0a760f3805d5937fa050235d707 (patch) | |
tree | b8cb8d939032c0806d62161b01e5836cb808dc3f /util-linux/mount.c | |
parent | e9f07fb6e83b75a50760599a5d31f494841eddf7 (diff) | |
download | busybox-w32-a9819b290848e0a760f3805d5937fa050235d707.tar.gz busybox-w32-a9819b290848e0a760f3805d5937fa050235d707.tar.bz2 busybox-w32-a9819b290848e0a760f3805d5937fa050235d707.zip |
Use busybox error handling functions wherever possible.
Diffstat (limited to 'util-linux/mount.c')
-rw-r--r-- | util-linux/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 8240b99aa..97b60abbd 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -383,7 +383,7 @@ extern int mount_main(int argc, char **argv) | |||
383 | } | 383 | } |
384 | endmntent(mountTable); | 384 | endmntent(mountTable); |
385 | } else { | 385 | } else { |
386 | perror(mtab_file); | 386 | perror_msg_and_die("%s", mtab_file); |
387 | } | 387 | } |
388 | return EXIT_SUCCESS; | 388 | return EXIT_SUCCESS; |
389 | } | 389 | } |