diff options
author | Sebastian Benoit <benno@cvs.openbsd.org> | 2019-12-04 23:03:06 +0000 |
---|---|---|
committer | Sebastian Benoit <benno@cvs.openbsd.org> | 2019-12-04 23:03:06 +0000 |
commit | fcf3e61b97e22661dbcf6a5c1eab53aa20df16f3 (patch) | |
tree | d221f6b0b73a861ce0a25d0d73ce3c4404204b7a /usr.sbin/rpki-client/output.c | |
parent | 926ff7de7961bf8230e1f3a12d6032b41a00b2a0 (diff) |
use return x; instead of return (x);, like all other files here.
ok deraadt@
Diffstat (limited to 'usr.sbin/rpki-client/output.c')
-rw-r--r-- | usr.sbin/rpki-client/output.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/rpki-client/output.c b/usr.sbin/rpki-client/output.c index e5f4402a10f..0dfcc1f0fa9 100644 --- a/usr.sbin/rpki-client/output.c +++ b/usr.sbin/rpki-client/output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: output.c,v 1.2 2019/12/04 23:01:54 benno Exp $ */ +/* $OpenBSD: output.c,v 1.3 2019/12/04 23:03:05 benno Exp $ */ /* * Copyright (c) 2019 Theo de Raadt <deraadt@openbsd.org> * @@ -77,7 +77,7 @@ outputfiles(struct vrp_tree *v) } } - return (rc); + return rc; } FILE * @@ -101,7 +101,7 @@ output_createtmp(char *name) f = fdopen(fd, "w"); if (f == NULL) err(1, "fdopen"); - return (f); + return f; } void |