diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-05-18 08:06:09 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-05-18 08:06:09 +0000 |
commit | a00d7920541fc987180d28daa33a5962da32491a (patch) | |
tree | 4f1a094c66aabf73191eacd37e60bfda936c87fe /sbin/wsconsctl | |
parent | b9a3f2cd2af612dafcf1d3e9fc6d6d24131c41f6 (diff) |
why exit if returns
Diffstat (limited to 'sbin/wsconsctl')
-rw-r--r-- | sbin/wsconsctl/wsconsctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/wsconsctl/wsconsctl.c b/sbin/wsconsctl/wsconsctl.c index 463bcea823a..9f9f00df1eb 100644 --- a/sbin/wsconsctl/wsconsctl.c +++ b/sbin/wsconsctl/wsconsctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wsconsctl.c,v 1.3 2001/02/05 22:47:13 matthieu Exp $ */ +/* $OpenBSD: wsconsctl.c,v 1.4 2001/05/18 08:06:08 mickey Exp $ */ /* $NetBSD: wsconsctl.c,v 1.2 1998/12/29 22:40:20 hannken Exp $ */ /*- @@ -223,5 +223,5 @@ main(argc, argv) } else usage(NULL); - exit(0); + return (0); } |