warning--

SVN revision: 56164
This commit is contained in:
Carsten Haitzler 2011-01-16 03:31:05 +00:00
parent 94ce85a68f
commit 6faa8b3554
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ _edje_text_font_get(const char *base, const char *new, char **free_later)
font_len = strlen(new);
aux = strchr(base_style, ',');
style_len = (aux) ? (aux - base_style) : strlen(base_style);
style_len = (aux) ? (size_t)(aux - base_style) : strlen(base_style);
*free_later = malloc(font_len + style_len + 1);
memcpy(*free_later, new, font_len);