From ce8e589a808f756f37ee6e545357d2907c3dd161 Mon Sep 17 00:00:00 2001 From: kramm Date: Mon, 30 Oct 2006 09:50:19 +0000 Subject: [PATCH] changed "%c" in text extraction to "%lc" --- lib/modules/swftext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/swftext.c b/lib/modules/swftext.c index 47ba5b9..fbfc00a 100644 --- a/lib/modules/swftext.c +++ b/lib/modules/swftext.c @@ -463,7 +463,7 @@ swf_FontExtract_DefineTextCallback(int id, SWFFONT * f, TAG * t, int jobs, if (id == fid) { if (jobs & FEDTJ_PRINT) { int code = f->glyph2ascii[glyph]; - printf("%c", code); + printf("%lc", code); } if (jobs & FEDTJ_MODIFY) f->glyph[glyph].advance = adv * 20; //? -- 1.7.10.4