diff options
Diffstat (limited to 'src/lib/efl/interfaces/efl_ui_format.c')
-rw-r--r-- | src/lib/efl/interfaces/efl_ui_format.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/efl/interfaces/efl_ui_format.c b/src/lib/efl/interfaces/efl_ui_format.c index 1064b078e3..c7b8c59aa9 100644 --- a/src/lib/efl/interfaces/efl_ui_format.c +++ b/src/lib/efl/interfaces/efl_ui_format.c | |||
@@ -38,7 +38,6 @@ _format_string_check(const char *fmt) | |||
38 | if (itr[1] == '%') | 38 | if (itr[1] == '%') |
39 | { | 39 | { |
40 | itr++; | 40 | itr++; |
41 | ret_type = FORMAT_TYPE_STRING; | ||
42 | continue; | 41 | continue; |
43 | } | 42 | } |
44 | 43 | ||
@@ -131,7 +130,7 @@ _default_format_cb(void *data, Eina_Strbuf *str, const Eina_Value value) | |||
131 | } | 130 | } |
132 | else if (sd->format_type == FORMAT_TYPE_STATIC) | 131 | else if (sd->format_type == FORMAT_TYPE_STATIC) |
133 | { | 132 | { |
134 | eina_strbuf_append(str, sd->template); | 133 | eina_strbuf_append_printf(str, sd->template); |
135 | } | 134 | } |
136 | else | 135 | else |
137 | { | 136 | { |