From 18f4b1c670a1c55cdb33daa77fb2085454a5a125 Mon Sep 17 00:00:00 2001 From: kramm Date: Fri, 1 Apr 2005 07:50:29 +0000 Subject: [PATCH] fixed swf_FontEnumerate() prototype --- lib/modules/swftext.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/modules/swftext.c b/lib/modules/swftext.c index 8690989..1a9b59f 100644 --- a/lib/modules/swftext.c +++ b/lib/modules/swftext.c @@ -101,7 +101,7 @@ int swf_FontIsBold(SWFFONT * f) static const int WRITEFONTID = 0x4e46; // font id for WriteFont and ReadFont -int swf_FontEnumerate(SWF * swf, void (*FontCallback) (void*, U16, U8 *), void*self) +int swf_FontEnumerate(SWF * swf, void (*FontCallback) (void*, U16, U8 *, void*self), void*self) { int n; TAG *t; @@ -129,7 +129,7 @@ int swf_FontEnumerate(SWF * swf, void (*FontCallback) (void*, U16, U8 *), void*s s[l] = 0; } - (FontCallback) (self, id, s); + (FontCallback) (self, id, s, self); swf_RestoreTagPos(t); } -- 1.7.10.4