summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2018-02-23 16:49:59 -0500
committerRich Salz <rsalz@openssl.org>2018-02-23 16:49:59 -0500
commit77376c0507b6159b94fc092d7fcd7e7c7a3ed7d9 (patch)
tree1f883a7927f214b7676b7f067e0298d60b836464 /ssl
parent604e591ed75eff9296c21ee5fe93f3e9ec246094 (diff)
Remove OSSLzu, and fix the one place that used it.
Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5439)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/record/ssl3_record.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/record/ssl3_record.c b/ssl/record/ssl3_record.c
index a806606395..fda918a9d8 100644
--- a/ssl/record/ssl3_record.c
+++ b/ssl/record/ssl3_record.c
@@ -550,7 +550,7 @@ int ssl3_get_record(SSL *s)
return -1;
}
#ifdef SSL_DEBUG
- printf("dec %"OSSLzu"\n", rr[0].length);
+ printf("dec %lu\n", (unsigned long)rr[0].length);
{
size_t z;
for (z = 0; z < rr[0].length; z++)