diff options
author | Gleydson Soares <gsoares@cvs.openbsd.org> | 2016-02-01 22:34:20 +0000 |
---|---|---|
committer | Gleydson Soares <gsoares@cvs.openbsd.org> | 2016-02-01 22:34:20 +0000 |
commit | e5b2686e9e83ec0e700db9199d91ed11639abc15 (patch) | |
tree | da3f467cf77d4b646389bd79927e645eb867458e | |
parent | 8357c56428d3605a2fe360b28564389e310e518b (diff) |
style nit - do not add a space between function name and bracket
from Edgar Pettijohn <edgar at pettijohn-web.com>
fix another similar space in line 127. (pointed out by/OK jung@)
OK tb@ jung@
-rw-r--r-- | bin/rm/rm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/rm/rm.c b/bin/rm/rm.c index 5deeb6d0e7f..f9c19549d5f 100644 --- a/bin/rm/rm.c +++ b/bin/rm/rm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rm.c,v 1.35 2015/11/17 17:17:24 deraadt Exp $ */ +/* $OpenBSD: rm.c,v 1.36 2016/02/01 22:34:19 gsoares Exp $ */ /* $NetBSD: rm.c,v 1.19 1995/09/07 06:48:50 jtc Exp $ */ /*- @@ -124,7 +124,7 @@ main(int argc, char *argv[]) rm_file(argv); } - exit (eval); + exit(eval); } void @@ -399,7 +399,7 @@ checkdot(char **argv) complained = 0; for (t = argv; *t;) { /* strip trailing slashes */ - p = strrchr (*t, '\0'); + p = strrchr(*t, '\0'); while (--p > *t && *p == '/') *p = '\0'; |