diff options
author | tb <> | 2018-04-03 21:59:37 +0000 |
---|---|---|
committer | tb <> | 2018-04-03 21:59:37 +0000 |
commit | fa93c1f197945062d5ade3c81706f3044c21224b (patch) | |
tree | c29ac242ed77869bfc4ab63cdc6a175aae4052e2 /src/lib/libcrypto/err | |
parent | c4e5bfb514d4f653861cfe3b9232c443d8b681d3 (diff) | |
download | openbsd-fa93c1f197945062d5ade3c81706f3044c21224b.tar.gz openbsd-fa93c1f197945062d5ade3c81706f3044c21224b.tar.bz2 openbsd-fa93c1f197945062d5ade3c81706f3044c21224b.zip |
KNF: move two opening curly braces of function bodies to their own lines
Diffstat (limited to 'src/lib/libcrypto/err')
-rw-r--r-- | src/lib/libcrypto/err/err.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libcrypto/err/err.c b/src/lib/libcrypto/err/err.c index 320078da66..caabfe01d6 100644 --- a/src/lib/libcrypto/err/err.c +++ b/src/lib/libcrypto/err/err.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: err.c,v 1.46 2018/03/17 16:20:01 beck Exp $ */ | 1 | /* $OpenBSD: err.c,v 1.47 2018/04/03 21:59:37 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -1107,7 +1107,8 @@ ERR_set_error_data(char *data, int flags) | |||
1107 | } | 1107 | } |
1108 | 1108 | ||
1109 | void | 1109 | void |
1110 | ERR_asprintf_error_data(char * format, ...) { | 1110 | ERR_asprintf_error_data(char * format, ...) |
1111 | { | ||
1111 | char *errbuf = NULL; | 1112 | char *errbuf = NULL; |
1112 | va_list ap; | 1113 | va_list ap; |
1113 | int r; | 1114 | int r; |