return values in default cases where applicable

SVN revision: 3817
This commit is contained in:
Carsten Haitzler 2000-11-07 20:43:05 +00:00
parent acc7f88694
commit 51f0972f8d
1 changed files with 2 additions and 2 deletions

View File

@ -362,7 +362,7 @@ evas_get_font_cache(Evas e)
return __evas_image_text_cache_get_size(e->current.display);
break;
default:
return;
return 0;
break;
}
return 0;
@ -444,7 +444,7 @@ evas_get_image_cache(Evas e)
return __evas_image_image_cache_get_size(e->current.display);
break;
default:
return;
return 0;
break;
}
return 0;