diff --git a/umount.c b/umount.c index b205812..e98d4b3 100644 --- a/umount.c +++ b/umount.c @@ -55,9 +55,10 @@ main(int argc, char *argv[]) } for (i = 0; i < argc; i++) { - if (umount2(argv[i], flags) < 0) + if (umount2(argv[i], flags) < 0) { perror("umount2:"); - ret = EXIT_FAILURE; + ret = EXIT_FAILURE; + } } return ret; }