From be770d37fb05b8486907796dd16f4635bceb4ce1 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Tue, 1 May 2018 00:32:48 +0900 Subject: [PATCH] efl ui fmt - make strbuf simpler and dont use printf to avoid warnings if someone turns on a lot of warning flags this is a warning (fals as the string is checked already for having a static format - no fmt flags, thus printf is valid). --- src/lib/efl/interfaces/efl_ui_format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/efl/interfaces/efl_ui_format.c b/src/lib/efl/interfaces/efl_ui_format.c index c7b8c59aa9..b4c24f2018 100644 --- a/src/lib/efl/interfaces/efl_ui_format.c +++ b/src/lib/efl/interfaces/efl_ui_format.c @@ -130,7 +130,7 @@ _default_format_cb(void *data, Eina_Strbuf *str, const Eina_Value value) } else if (sd->format_type == FORMAT_TYPE_STATIC) { - eina_strbuf_append_printf(str, sd->template); + eina_strbuf_append(str, sd->template); } else {