blob: 4e85b27a1853443bca754a8d0317de434f0158bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- mng.c.orig 2004-09-01 03:50:32 UTC
+++ mng.c
@@ -48,13 +48,13 @@ void mng_window_setup __P((mngstuff *mymng, int x, int
/* callbacks for the mng decoder */
/* memory allocation; data must be zeroed */
-mng_ptr mymngalloc(mng_uint32 size)
+mng_ptr mymngalloc(mng_size_t size)
{
return (mng_ptr)calloc(1, size);
}
/* memory deallocation */
-void mymngfree(mng_ptr p, mng_uint32 size)
+void mymngfree(mng_ptr p, mng_size_t size)
{
free(p);
return;
|