Fix a missed size_t variable declaration
authorMatt Caswell <matt@openssl.org>
Fri, 4 Nov 2016 10:26:57 +0000 (10:26 +0000)
committerMatt Caswell <matt@openssl.org>
Fri, 4 Nov 2016 12:09:46 +0000 (12:09 +0000)
commitc42a78cb57cd335f3e2b224d4d8c8d7c2ecfaa44
treeea478d4ecc372a6accc6c206fe9e3c8146d72a37
parentff04799d904ec2bfcfc3a3ca656549db2dec9068
Fix a missed size_t variable declaration

pqueue_size() now returns a size_t, but the variable that gets returned
was still declared as an int.

Reviewed-by: Rich Salz <rsalz@openssl.org>
ssl/pqueue.c