summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-09-30 10:28:14 +0200
committerAndy Polyakov <appro@openssl.org>2015-10-05 09:25:54 +0200
commit21ff9ac815f363a4fc9c8dc80ca09f0a5b2f02ef (patch)
treeb0f17886375153a71600680a7f89c6852a95bac3 /crypto
parent45f1351821a44f4ba7b5c6485277ba7729b6ec4a (diff)
bio/bss_log.c: harmonize format string to silence -Wformat.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bio/bss_log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/bss_log.c b/crypto/bio/bss_log.c
index f59ec7cce7..a86ea29b67 100644
--- a/crypto/bio/bss_log.c
+++ b/crypto/bio/bss_log.c
@@ -322,7 +322,7 @@ static void xsyslog(BIO *bp, int priority, const char *string)
break;
}
- sprintf(pidbuf, "[%u] ", GetCurrentProcessId());
+ sprintf(pidbuf, "[%lu] ", GetCurrentProcessId());
lpszStrings[0] = pidbuf;
lpszStrings[1] = string;