forked from minhngoc25a/freetype2
* include/freetype/internal/ftmemory.h (FT_REALLOC_ARRAY): Fix typo.
Reported by Brett Hutley.
This commit is contained in:
parent
00764a59e2
commit
6e322e7852
|
@ -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:
|
||||
|
|
|
@ -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_ ) )
|
||||
|
||||
|
||||
/* */
|
||||
|
|
Loading…
Reference in New Issue