diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2018-04-03 21:59:38 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2018-04-03 21:59:38 +0000 |
commit | 6701a66c9e8041d93ceea2c23ca9805be964c9f3 (patch) | |
tree | ef871934f37338ac05ebc78d8acf11018d103090 /lib/libcrypto/err | |
parent | ade4870613ec7134009eb0f218687195f66ec377 (diff) |
KNF: move two opening curly braces of function bodies to their own lines
Diffstat (limited to 'lib/libcrypto/err')
-rw-r--r-- | lib/libcrypto/err/err.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libcrypto/err/err.c b/lib/libcrypto/err/err.c index 320078da664..caabfe01d6e 100644 --- a/lib/libcrypto/err/err.c +++ b/lib/libcrypto/err/err.c @@ -1,4 +1,4 @@ -/* $OpenBSD: err.c,v 1.46 2018/03/17 16:20:01 beck Exp $ */ +/* $OpenBSD: err.c,v 1.47 2018/04/03 21:59:37 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1107,7 +1107,8 @@ ERR_set_error_data(char *data, int flags) } void -ERR_asprintf_error_data(char * format, ...) { +ERR_asprintf_error_data(char * format, ...) +{ char *errbuf = NULL; va_list ap; int r; |