Do not terminate early on a umount failure

This commit is contained in:
sin 2013-10-07 19:18:38 +01:00
parent 262c1d768e
commit d017808c80
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ main(int argc, char *argv[])
for (i = 0; i < argc; i++) {
if (umount2(argv[i], flags) < 0)
eprintf("umount2:");
perror("umount2:");
ret = EXIT_FAILURE;
}
return ret;