From 88c131a16f66fafba8fad47a2466e70f9c6fc65c Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Mon, 25 Feb 2019 15:12:29 -0500 Subject: [PATCH] Fix another compiler warning. --- ppdc/ppdc-array.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppdc/ppdc-array.cxx b/ppdc/ppdc-array.cxx index acd1e222e0..b33cd627d7 100644 --- a/ppdc/ppdc-array.cxx +++ b/ppdc/ppdc-array.cxx @@ -39,7 +39,7 @@ ppdcArray::ppdcArray(ppdcArray *a) memcpy(data, a->data, (size_t)count * sizeof(ppdcShared *)); - for (int i = 0; i < count; i ++) + for (size_t i = 0; i < count; i ++) data[i]->retain(); } else -- 2.47.2