From 99cda4376e75382f2b585bcb569080a225273e49 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Thu, 4 Apr 2013 15:57:43 +0200 Subject: [PATCH] cryptlib.c: fix typo in OPENSSL_showfatal. --- crypto/cryptlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.25.1