ioctl_fat.2: Use "exit()" rather than "return" to terminate main()

For consistency with other pages.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2015-02-03 12:14:04 +01:00
parent 3a6b94457d
commit 3b4f95709f
1 changed files with 3 additions and 3 deletions

View File

@ -305,7 +305,7 @@ main(int argc, char *argv[])
close(fd);
return EXIT_SUCCESS;
exit(EXIT_SUCCESS);
}
.fi
.in
@ -369,7 +369,7 @@ main(int argc, char *argv[])
close(fd);
return EXIT_SUCCESS;
exit(EXIT_SUCCESS);
}
.fi
.in
@ -453,7 +453,7 @@ main(int argc, char *argv[])
*/
close(fd);
return EXIT_SUCCESS;
exit(EXIT_SUCCESS);
}
.fi
.in