Fix build break

Caused by 1c0a459293
I should have been more careful before approving, my bad.
This commit is contained in:
Xavi Artigas 2019-07-29 12:23:18 +02:00
parent 1c0a459293
commit ef235c43c8
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ _efl_gfx_color_class_color_class_code_set(Eo *obj, void *_pd EINA_UNUSED, const
int len;
unsigned char r, g, b, a;
len = _format_clean_param(colorcode);
len = (size_t) strlen(colorcode);
_format_color_parse(colorcode, len, &r, &g, &b, &a);
return efl_gfx_color_class_set(obj, color_class, layer, r, g, b, a);