edje: fix float comparison warning in edje_pick.

This commit is contained in:
Cedric BAIL 2016-12-20 15:46:43 -08:00
parent a27561b5f5
commit 6e40fd890b
1 changed files with 1 additions and 1 deletions

View File

@ -558,7 +558,7 @@ _edje_pick_output_prepare(Edje_File *o, Edje_File *edf, char *name)
if (o->feature_ver < edf->feature_ver)
o->feature_ver = edf->feature_ver;
}
if (o->base_scale != edf->base_scale)
if (NEQ(o->base_scale, edf->base_scale))
{
EINA_LOG_ERR("Error: Merging files of various base scale. Base scale of the files should be same.\n");
free(o);