From 3b4f95709f7a97b9f6a4e607ec00cfd9e5b9fed1 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Tue, 3 Feb 2015 12:14:04 +0100 Subject: [PATCH] ioctl_fat.2: Use "exit()" rather than "return" to terminate main() For consistency with other pages. Signed-off-by: Michael Kerrisk --- man2/ioctl_fat.2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/man2/ioctl_fat.2 b/man2/ioctl_fat.2 index 7cc1f1ecd..55417f696 100644 --- a/man2/ioctl_fat.2 +++ b/man2/ioctl_fat.2 @@ -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