summaryrefslogtreecommitdiff
path: root/src/otvalid
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2016-09-17 17:12:50 +0200
committerWerner Lemberg <wl@gnu.org>2016-09-17 17:12:50 +0200
commitc95b7652d8db19530c91e80d23c288bbf27f1b72 (patch)
tree626ae51680b7f26746b744fdfd4809e5f42edafe /src/otvalid
parentd5f7533e8ec349f57d3669b5afc694a98f498d6e (diff)
downloadfreetype2-c95b7652d8db19530c91e80d23c288bbf27f1b72.tar.gz
s/0/NULL/ for function pointers; comments, formatting.
Diffstat (limited to 'src/otvalid')
-rw-r--r--src/otvalid/otvmod.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/otvalid/otvmod.c b/src/otvalid/otvmod.c
index 972bd1baa..aed5e9c6f 100644
--- a/src/otvalid/otvmod.c
+++ b/src/otvalid/otvmod.c
@@ -271,11 +271,11 @@
0x10000L,
0x20000L,
- 0, /* module-specific interface */
+ NULL, /* module-specific interface */
- (FT_Module_Constructor)0,
- (FT_Module_Destructor) 0,
- (FT_Module_Requester) otvalid_get_service
+ (FT_Module_Constructor)NULL, /* module_init */
+ (FT_Module_Destructor) NULL, /* module_done */
+ (FT_Module_Requester) otvalid_get_service /* get_interface */
};