From 0ca191a6f0a87c2a0474803460d8dfc4368dcc1a Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 28 Feb 2014 12:13:46 +0100 Subject: [PATCH] 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 c58298e1c5..160135dc53 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();