summaryrefslogtreecommitdiff
path: root/src/cid/cidriver.c
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2000-07-04 18:12:13 +0000
committerDavid Turner <david@freetype.org>2000-07-04 18:12:13 +0000
commitc6a92202c23b916536903921401e6289f8b66ca2 (patch)
tree012ec9570db40afd2f61e4cc1903d608dd5e6742 /src/cid/cidriver.c
parentaa8c7da0bfe3a4e93ac380478fbad7d35c0be0d0 (diff)
downloadfreetype2-c6a92202c23b916536903921401e6289f8b66ca2.tar.gz
various clean-ups:
- using FT_UNUSED instead of UNUSED - using FT_LONG64 and FT_INT64 instead of LONG64 & INT64 - using FT_SIZEOF_INT & FT_SIZEOF_LONG instead of... - removed the #ifdefs that used SIZEOF_INT, instead we now use FT_Int32 and FT_UInt32 when needed to support 32-bits quantity correctly on 64-bits systems..
Diffstat (limited to 'src/cid/cidriver.c')
-rw-r--r--src/cid/cidriver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cid/cidriver.c b/src/cid/cidriver.c
index 47195540b..651dcb1c8 100644
--- a/src/cid/cidriver.c
+++ b/src/cid/cidriver.c
@@ -40,8 +40,8 @@
FT_Module_Interface CID_Get_Interface( FT_Driver driver,
const FT_String* interface )
{
- UNUSED( driver );
- UNUSED( interface );
+ FT_UNUSED( driver );
+ FT_UNUSED( interface );
return 0;
}