From: discomfitor Date: Sat, 2 Oct 2010 07:42:01 +0000 (+0000) Subject: this is the WRONG fix for compiled-in edj font issues. it does, however, temporarily... X-Git-Tag: 2.0_alpha~163^2~262 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f2f69f892e758b972d00ba03125f1ab5947e65d6;p=framework%2Fuifw%2Fedje.git this is the WRONG fix for compiled-in edj font issues. it does, however, temporarily fix the problem until someone who knows what they're doing comes along git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/edje@52977 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/bin/edje_decc.c b/src/bin/edje_decc.c index 427c440..a3b6c78 100644 --- a/src/bin/edje_decc.c +++ b/src/bin/edje_decc.c @@ -291,14 +291,14 @@ output(void) int fontsize; char out[4096]; - snprintf(out, sizeof(out), "edje/fonts/%s", fn->entry); + snprintf(out, sizeof(out), "edje/fonts/%s", fn->file); font = eet_read(ef, out, &fontsize); if (font) { FILE *f; char *pp; - snprintf(out, sizeof(out), "%s/%s", outdir, fn->file); + snprintf(out, sizeof(out), "%s/%s", outdir, fn->entry); INF("Output Font: %s", out); pp = strdup(out); p = strrchr(pp, '/');