summaryrefslogtreecommitdiff
path: root/src/otvalid
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2013-03-14 11:21:17 +0100
committerWerner Lemberg <wl@gnu.org>2013-03-14 11:21:17 +0100
commite3c9301581a450fae5db73a3b94b10ed6a0aeb5e (patch)
treedc078dba342716dbc7508c54277376d25b23c931 /src/otvalid
parent059bc335ce42220b222763379e89d0cbf2b949eb (diff)
downloadfreetype2-e3c9301581a450fae5db73a3b94b10ed6a0aeb5e.tar.gz
*/*: Use FT_Err_Ok only.
This is a purely mechanical conversion.
Diffstat (limited to 'src/otvalid')
-rw-r--r--src/otvalid/otvmod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/otvalid/otvmod.c b/src/otvalid/otvmod.c
index b180f0add..da42f6068 100644
--- a/src/otvalid/otvmod.c
+++ b/src/otvalid/otvmod.c
@@ -50,7 +50,7 @@
error = FT_Load_Sfnt_Table( face, tag, 0, NULL, table_len );
if ( FT_ERROR_BASE( error ) == FT_Err_Table_Missing )
- return OTV_Err_Ok;
+ return FT_Err_Ok;
if ( error )
goto Exit;
@@ -73,7 +73,7 @@
FT_Bytes *ot_gsub,
FT_Bytes *ot_jstf )
{
- FT_Error error = OTV_Err_Ok;
+ FT_Error error = FT_Err_Ok;
FT_Byte* volatile base;
FT_Byte* volatile gdef;
FT_Byte* volatile gpos;