Evas (gl engine): Remove incorrect __UNUSED__ on paramaters that are

actually used.



SVN revision: 65928
This commit is contained in:
Christopher Michael 2011-12-06 00:44:25 +00:00
parent 97bd076da0
commit 9935288eaa
1 changed files with 1 additions and 1 deletions

View File

@ -1031,7 +1031,7 @@ eng_output_redraws_rect_add(void *data, int x, int y, int w, int h)
}
static void
eng_output_redraws_rect_del(void *data __UNUSED__, int x __UNUSED__, int y __UNUSED__, int w __UNUSED__, int h __UNUSED__)
eng_output_redraws_rect_del(void *data, int x, int y, int w, int h)
{
Render_Engine *re;