summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>1998-12-21 13:43:38 +0000
committerArtur Grabowski <art@cvs.openbsd.org>1998-12-21 13:43:38 +0000
commit46a9d4c94520205a0d4871b0f140d5e4f55acc8c (patch)
treeb81fa90522820d9deb35c2b300fc00f459a19ac3 /sbin
parente4eff56e031848712509625c92da20da450815f7 (diff)
return 0 instead of exit(0) in main()
Diffstat (limited to 'sbin')
-rw-r--r--sbin/mount_kernfs/mount_kernfs.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sbin/mount_kernfs/mount_kernfs.c b/sbin/mount_kernfs/mount_kernfs.c
index 89257807f38..2381456871c 100644
--- a/sbin/mount_kernfs/mount_kernfs.c
+++ b/sbin/mount_kernfs/mount_kernfs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mount_kernfs.c,v 1.5 1998/12/21 13:41:46 art Exp $ */
+/* $OpenBSD: mount_kernfs.c,v 1.6 1998/12/21 13:43:37 art Exp $ */
/* $NetBSD: mount_kernfs.c,v 1.8 1996/04/13 05:35:39 cgd Exp $ */
/*
@@ -48,7 +48,7 @@ char copyright[] =
#if 0
static char sccsid[] = "@(#)mount_kernfs.c 8.2 (Berkeley) 3/27/94";
#else
-static char rcsid[] = "$OpenBSD: mount_kernfs.c,v 1.5 1998/12/21 13:41:46 art Exp $";
+static char rcsid[] = "$OpenBSD: mount_kernfs.c,v 1.6 1998/12/21 13:43:37 art Exp $";
#endif
#endif /* not lint */
@@ -99,7 +99,8 @@ main(argc, argv)
else
err(1, NULL);
}
- exit(0);
+
+ return 0;
}
void