summaryrefslogtreecommitdiff
path: root/ppdc
diff options
context:
space:
mode:
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