From 66871797af194f9d2161faf8bfbc9684f09e207e Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 2 Mar 2009 14:20:20 +0330 Subject: [PATCH] [opentype] Use size_t instead of uint for malloc wrappers --- src/harfbuzz-impl.c | 4 ++-- src/harfbuzz-impl.h | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/harfbuzz-impl.c b/src/harfbuzz-impl.c index a3a5589..ffcef80 100644 --- a/src/harfbuzz-impl.c +++ b/src/harfbuzz-impl.c @@ -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; diff --git a/src/harfbuzz-impl.h b/src/harfbuzz-impl.h index 0442e4e..f886e67 100644 --- a/src/harfbuzz-impl.h +++ b/src/harfbuzz-impl.h @@ -32,6 +32,8 @@ #include "harfbuzz-global.h" +#include + 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 -- 2.7.4