aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/cryptlib.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2013-04-04 15:57:43 +0200
committerAndy Polyakov <appro@openssl.org>2013-04-04 15:57:43 +0200
commit99cda4376e75382f2b585bcb569080a225273e49 (patch)
treec11ad0db717e4138cb318ba9317cdae6df691067 /crypto/cryptlib.c
parent73325b221c43e80980388980af37120232d44af3 (diff)
downloadopenssl-99cda4376e75382f2b585bcb569080a225273e49.tar.gz
cryptlib.c: fix typo in OPENSSL_showfatal.
Diffstat (limited to 'crypto/cryptlib.c')
-rw-r--r--crypto/cryptlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c
index 56d82adfcd..049a7bba91 100644
--- a/crypto/cryptlib.c
+++ b/crypto/cryptlib.c
@@ -310,7 +310,7 @@ void OPENSSL_showfatal (const char *fmta,...)
DWORD out;
va_start (ap,fmta);
- len=_vsnprintf((char *)buf,sizeof(buf),fmt,ap);
+ len=_vsnprintf((char *)buf,sizeof(buf),fmta,ap);
WriteFile(h,buf,len<0?sizeof(buf):(DWORD)len,&out,NULL);
va_end (ap);
return;