Remove useless if statement. Regardless if count is greater than 1, we

were still returning the count anyway.



SVN revision: 50369
This commit is contained in:
Christopher Michael 2010-07-19 18:16:56 +00:00
parent 05a03bd60c
commit e6f4e7be70
1 changed files with 0 additions and 1 deletions

View File

@ -16,7 +16,6 @@ static int
_ecore_evas_buffer_init(void)
{
_ecore_evas_init_count++;
if (_ecore_evas_init_count > 1) return _ecore_evas_init_count;
return _ecore_evas_init_count;
}