Evas: Fix harmless typo in eet image loader

Spotted by Snacker, thanks.
This commit is contained in:
Jean-Philippe Andre 2014-04-04 18:06:26 +09:00
parent 2e8c7cad3a
commit 3cb7b19608
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ evas_image_load_file_data_eet(void *loader_data,
switch (prop->cspace)
{
case EVAS_COLORSPACE_ETC1: cspace = EET_COLORSPACE_ETC1; break;
case EVAS_COLORSPACE_ARGB8888: cspace = EVAS_COLORSPACE_ARGB8888; break;
case EVAS_COLORSPACE_ARGB8888: cspace = EET_COLORSPACE_ARGB8888; break;
default:
return _evas_image_load_return_error(EVAS_LOAD_ERROR_RESOURCE_ALLOCATION_FAILED, error);
}