[opentype] Use size_t instead of uint for malloc wrappers
authorBehdad Esfahbod <behdad@behdad.org>
Mon, 2 Mar 2009 10:50:20 +0000 (14:20 +0330)
committerBehdad Esfahbod <behdad@behdad.org>
Mon, 2 Mar 2009 10:50:20 +0000 (14:20 +0330)
src/harfbuzz-impl.c
src/harfbuzz-impl.h

index a3a5589..ffcef80 100644 (file)
@@ -30,7 +30,7 @@
 
 
 HB_INTERNAL HB_Pointer
-_hb_alloc( HB_UInt   size,
+_hb_alloc( size_t    size,
           HB_Error *perror )
 {
   HB_Error    error = 0;
@@ -50,7 +50,7 @@ _hb_alloc( HB_UInt   size,
 
 HB_INTERNAL HB_Pointer
 _hb_realloc( HB_Pointer  block,
-            HB_UInt     new_size,
+            size_t      new_size,
             HB_Error   *perror )
 {
   HB_Pointer  block2 = NULL;
index 0442e4e..f886e67 100644 (file)
@@ -32,6 +32,8 @@
 
 #include "harfbuzz-global.h"
 
+#include <stdlib.h>
+
 HB_BEGIN_HEADER
 
 #ifndef HB_INTERNAL
@@ -95,12 +97,12 @@ HB_BEGIN_HEADER
 
 
 HB_INTERNAL HB_Pointer
-_hb_alloc( HB_UInt   size,
+_hb_alloc( size_t    size,
           HB_Error *perror_ );
 
 HB_INTERNAL HB_Pointer
 _hb_realloc( HB_Pointer block,
-            HB_UInt    new_size,
+            size_t     new_size,
             HB_Error  *perror_ );
 
 HB_INTERNAL void