diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/src/crypto/cryptlib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/src/crypto/cryptlib.c b/lib/libssl/src/crypto/cryptlib.c index 4a96c3e3746..fd746d3b383 100644 --- a/lib/libssl/src/crypto/cryptlib.c +++ b/lib/libssl/src/crypto/cryptlib.c @@ -700,9 +700,9 @@ OPENSSL_showfatal(const char *fmta, ...) { va_list ap; - va_start (ap, fmta); - vfprintf (stderr, fmta, ap); - va_end (ap); + va_start(ap, fmta); + vfprintf(stderr, fmta, ap); + va_end(ap); } void |