stefan pushed a commit to branch efl-1.9. http://git.enlightenment.org/core/efl.git/commit/?id=8f3188d42e63954be6d33713270701f36a9f7117
commit 8f3188d42e63954be6d33713270701f36a9f7117 Author: Stefan Schmidt <[email protected]> Date: Fri Feb 28 12:13:46 2014 +0100 examples/evas: Set a proper format string for fprintf Instead of abusing the format string we should set it. Was made aware of this problme by chinmaya061 in https://phab.enlightenment.org/D585 @fix --- src/examples/evas/evas-box.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/examples/evas/evas-box.c b/src/examples/evas/evas-box.c index c58298e..160135d 100644 --- a/src/examples/evas/evas-box.c +++ b/src/examples/evas/evas-box.c @@ -108,7 +108,7 @@ _on_keydown(void *data EINA_UNUSED, if (strcmp(ev->key, "h") == 0) /* print help */ { - fprintf(stdout, commands); + fprintf(stdout, "%s", commands); return; } @@ -361,7 +361,7 @@ main(void) evas_object_image_border_center_fill_set(d.border, EVAS_BORDER_FILL_NONE); evas_object_show(d.border); - fprintf(stdout, commands); + fprintf(stdout, "%s", commands); _canvas_resize_cb(d.ee); ecore_main_loop_begin(); --
