summaryrefslogtreecommitdiff
path: root/src/type42
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2016-12-26 17:08:17 +0100
committerWerner Lemberg <wl@gnu.org>2016-12-26 17:08:17 +0100
commit4441f7b24675fbd7d91f794f5d54e6c1ff168439 (patch)
tree6272c1a7a82fef6c8b57b5131edd65bbde5cf420 /src/type42
parent37c72f66a56887ec25f4f541337b00e8ba69b9ee (diff)
downloadfreetype2-4441f7b24675fbd7d91f794f5d54e6c1ff168439.tar.gz
Replace `foo == NULL' and `foo != NULL' with `!foo' and `foo', resp.
Other minor formatting.
Diffstat (limited to 'src/type42')
-rw-r--r--src/type42/t42objs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/type42/t42objs.c b/src/type42/t42objs.c
index 089ae0f5a..1e4907b86 100644
--- a/src/type42/t42objs.c
+++ b/src/type42/t42objs.c
@@ -590,7 +590,7 @@
FT_Error error = FT_Err_Ok;
- if ( face->glyph == NULL )
+ if ( !face->glyph )
{
/* First glyph slot for this face */
slot->ttslot = t42face->ttf_face->glyph;