From 28947389ae968e2dd9a3d2039dd66004027852a1 Mon Sep 17 00:00:00 2001 From: Thomas Doerfler Date: Fri, 18 Mar 2011 10:11:37 +0000 Subject: Make code match prototype to eliminate warnings. eliminate unneeded comilation of 64 bit functions --- cpukit/zlib/zutil.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/zlib/zutil.c') 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) : -- cgit v1.2.3