* include/freetype/internal/ftmemory.h (FT_REALLOC_ARRAY): Fix typo.

Reported by Brett Hutley.
This commit is contained in:
Werner Lemberg 2005-07-05 09:00:11 +00:00
parent 00764a59e2
commit 6e322e7852
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2005-07-04 Werner Lemberg <wl@gnu.org>
* include/freetype/internal/ftmemory.h (FT_REALLOC_ARRAY): Fix typo.
Reported by Brett Hutley.
2005-06-30 David Turner <david@freetype.org>
* src/sfnt/ftbitmap.c, src/truetype/ttgload.c, src/sfnt/ttcmap.c:

View File

@ -429,9 +429,9 @@ FT_BEGIN_HEADER
#define FT_ALLOC_ARRAY( _pointer_, _count_, _type_ ) \
FT_ALLOC( _pointer_, (_count_) * sizeof ( _type_ ) )
#define FT_REALLOC_ARRAY( _pointer_, _old_, _new_, _type_ ) \
FT_REALLOC( _pointer, (_old_) * sizeof ( _type_ ), \
(_new_) * sizeof ( _type_ ) )
#define FT_REALLOC_ARRAY( _pointer_, _old_, _new_, _type_ ) \
FT_REALLOC( _pointer_, (_old_) * sizeof ( _type_ ), \
(_new_) * sizeof ( _type_ ) )
/* */