remove unneeded semi-colon

SVN revision: 47529
This commit is contained in:
Vincent Torri 2010-03-28 12:24:10 +00:00
parent 7bd971f3ae
commit 9ed7f52215
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ struct _Evas_Cache_Image_Func
int (*color_space)(Image_Entry *dst, int cspace);
/* This function need to update im->w and im->h. */
int (*load)(Image_Entry *im);; /**< return is EVAS_LOAD_ERROR_* or EVAS_LOAD_ERROR_NONE! */
int (*load)(Image_Entry *im); /**< return is EVAS_LOAD_ERROR_* or EVAS_LOAD_ERROR_NONE! */
int (*mem_size_get)(Image_Entry *im);
void (*debug)(const char *context, Image_Entry *im);
};