summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexei Podtelezhnikov <apodtele@gmail.com>2021-09-03 22:13:22 -0400
committerAlexei Podtelezhnikov <apodtele@gmail.com>2021-09-03 22:13:22 -0400
commitaee1fd3bb8ad78e5aed4ce5e95a36757de888b68 (patch)
treec1d0fc07c9b0f4dcbca51196a42fd92beaf6e655
parent7bf655b2288640a46b8d16f06c4ac9b6d9f3b2b8 (diff)
downloadfreetype2-aee1fd3bb8ad78e5aed4ce5e95a36757de888b68.tar.gz
Cosmetic zeros.
-rw-r--r--src/base/ftglyph.c4
-rw-r--r--src/base/ftstream.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/base/ftglyph.c b/src/base/ftglyph.c
index 1622f9662..e2c6f73f8 100644
--- a/src/base/ftglyph.c
+++ b/src/base/ftglyph.c
@@ -585,7 +585,7 @@
#if 1
/* if `origin' is set, translate the glyph image */
if ( origin )
- FT_Glyph_Transform( glyph, 0, origin );
+ FT_Glyph_Transform( glyph, NULL, origin );
#else
FT_UNUSED( origin );
#endif
@@ -603,7 +603,7 @@
v.x = -origin->x;
v.y = -origin->y;
- FT_Glyph_Transform( glyph, 0, &v );
+ FT_Glyph_Transform( glyph, NULL, &v );
}
#endif
diff --git a/src/base/ftstream.c b/src/base/ftstream.c
index d494efcde..5992998ba 100644
--- a/src/base/ftstream.c
+++ b/src/base/ftstream.c
@@ -61,7 +61,7 @@
if ( stream->read )
{
- if ( stream->read( stream, pos, 0, 0 ) )
+ if ( stream->read( stream, pos, NULL, 0 ) )
{
FT_ERROR(( "FT_Stream_Seek:"
" invalid i/o; pos = 0x%lx, size = 0x%lx\n",