diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2007-03-25 23:21:12 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2007-03-25 23:21:12 +0000 |
commit | 0499dd034c2ebe80dca6bedbe8014964841ea7d8 (patch) | |
tree | dd10d2ba3fbf60e5edda7750ad8a39ab5e194a6a /usr.bin/sendbug/sendbug.c | |
parent | cf1c89a6efbf6d1089dc45629e2c43563cb67601 (diff) |
KNF.
Diffstat (limited to 'usr.bin/sendbug/sendbug.c')
-rw-r--r-- | usr.bin/sendbug/sendbug.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/sendbug/sendbug.c b/usr.bin/sendbug/sendbug.c index 4a03d2233e6..1e71303a359 100644 --- a/usr.bin/sendbug/sendbug.c +++ b/usr.bin/sendbug/sendbug.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sendbug.c,v 1.16 2007/03/25 23:18:56 ray Exp $ */ +/* $OpenBSD: sendbug.c,v 1.17 2007/03/25 23:21:11 ray Exp $ */ /* * Written by Ray Lai <ray@cyth.net>. @@ -195,7 +195,7 @@ editit(char *tmpfile) if (saved_errno == EPROCLIM) { warnx("you have too many processes"); free(p); - return(0); + return (0); } if (saved_errno == EAGAIN) { sleep(1); @@ -203,7 +203,7 @@ editit(char *tmpfile) } perror("fork"); free(p); - return(0); + return (0); } if (pid == 0) { (void)signal(SIGHUP, SIG_DFL); @@ -224,8 +224,8 @@ editit(char *tmpfile) (void)signal(SIGINT, SIG_DFL); (void)signal(SIGQUIT, SIG_DFL); if (!WIFEXITED(stat) || WEXITSTATUS(stat) != 0) - return(0); - return(1); + return (0); + return (1); } int |