From 493119b1a81ccd447a88654cbc95aaab73289d85 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Wed, 2 Apr 2014 21:48:56 +0200 Subject: cryptlib.c: fix typo in WIN32 version of OPENSSL_showfatal. --- crypto/cryptlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c index 118fca1ee9..cf96011cc5 100644 --- a/crypto/cryptlib.c +++ b/crypto/cryptlib.c @@ -297,7 +297,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; -- cgit v1.2.3