Fix 'return' with a value in function returning void.

SVN revision: 48754
This commit is contained in:
Christopher Michael 2010-05-11 14:01:42 +00:00
parent 8abda5cb05
commit 54a9f1023d
1 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ ecore_animator_freeze(Ecore_Animator *animator)
{
ECORE_MAGIC_FAIL(animator, ECORE_MAGIC_ANIMATOR,
"ecore_animator_del");
return NULL;
return;
}
if (animator->delete_me) return;
animator->suspended = EINA_TRUE;
@ -170,7 +170,7 @@ ecore_animator_thaw(Ecore_Animator *animator)
{
ECORE_MAGIC_FAIL(animator, ECORE_MAGIC_ANIMATOR,
"ecore_animator_del");
return NULL;
return;
}
if (animator->delete_me) return;
animator->suspended = EINA_FALSE;