summaryrefslogtreecommitdiff
path: root/src/smooth/ftsmooth.c
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2002-07-28 05:05:24 +0000
committerWerner Lemberg <wl@gnu.org>2002-07-28 05:05:24 +0000
commitb3d5e9cf03dce78e606b79c81cb1f29ce06555d5 (patch)
tree51a327ed6936c63a7f22550b7bc9eedaab931766 /src/smooth/ftsmooth.c
parentbdb10748a79e13ba1ae88571ddafac71fdbde4c7 (diff)
downloadfreetype2-b3d5e9cf03dce78e606b79c81cb1f29ce06555d5.tar.gz
s/ft_memset/FT_MEM_SET/.
s/FT_MEM_SET/FT_MEM_ZERO/ where appropriate.
Diffstat (limited to 'src/smooth/ftsmooth.c')
-rw-r--r--src/smooth/ftsmooth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/smooth/ftsmooth.c b/src/smooth/ftsmooth.c
index b717926db..85a4b8659 100644
--- a/src/smooth/ftsmooth.c
+++ b/src/smooth/ftsmooth.c
@@ -85,7 +85,7 @@
FT_GlyphSlot slot,
FT_BBox* cbox )
{
- FT_MEM_SET( cbox, 0, sizeof ( *cbox ) );
+ FT_MEM_ZERO( cbox, sizeof ( *cbox ) );
if ( slot->format == render->glyph_format )
FT_Outline_Get_CBox( &slot->outline, cbox );