summaryrefslogtreecommitdiff
path: root/ppdc
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2019-02-25 15:12:16 -0500
committerMichael R Sweet <michael.r.sweet@gmail.com>2019-02-25 15:12:16 -0500
commitca2990c7fe11c7b131ba18e9137cd07c5e9de877 (patch)
treef86ab39d16165e03bf22620527ae22c8ac002eca /ppdc
parent2a06fe63e619fcd82df2d697a8ecb965f260a38f (diff)
Fix another compiler warning.
Diffstat (limited to 'ppdc')
-rw-r--r--ppdc/ppdc-array.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ppdc/ppdc-array.cxx b/ppdc/ppdc-array.cxx
index fac8f0a29..3a0cab33b 100644
--- a/ppdc/ppdc-array.cxx
+++ b/ppdc/ppdc-array.cxx
@@ -35,7 +35,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