bio/bss_log.c: harmonize format string to silence -Wformat.

Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Andy Polyakov 2015-09-30 10:28:14 +02:00
parent 45f1351821
commit 21ff9ac815

View File

@ -322,7 +322,7 @@ static void xsyslog(BIO *bp, int priority, const char *string)
break; break;
} }
sprintf(pidbuf, "[%u] ", GetCurrentProcessId()); sprintf(pidbuf, "[%lu] ", GetCurrentProcessId());
lpszStrings[0] = pidbuf; lpszStrings[0] = pidbuf;
lpszStrings[1] = string; lpszStrings[1] = string;