提交 c42a78cb 编写于 作者: M Matt Caswell

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: NRich Salz <rsalz@openssl.org>
上级 ff04799d
......@@ -144,7 +144,7 @@ pitem *pqueue_next(pitem **item)
size_t pqueue_size(pqueue *pq)
{
pitem *item = pq->items;
int count = 0;
size_t count = 0;
while (item != NULL) {
count++;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册