summaryrefslogtreecommitdiffstats
path: root/cpukit/zlib/zutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/zlib/zutil.c')
-rw-r--r--cpukit/zlib/zutil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/zlib/zutil.c b/cpukit/zlib/zutil.c
index 98a55a8838..c0616310cb 100644
--- a/cpukit/zlib/zutil.c
+++ b/cpukit/zlib/zutil.c
@@ -299,8 +299,8 @@ extern void free OF((voidpf ptr));
voidpf zcalloc (opaque, items, size)
voidpf opaque;
- unsigned items;
- unsigned size;
+ uInt items;
+ uInt size;
{
if (opaque) items += size - size; /* make compiler happy */
return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :