Remove unused variables.

Signed-off-by: Chris Michael <devilhorns@comcast.net>
This commit is contained in:
Chris Michael 2013-08-11 14:02:21 +01:00
parent 393040a9fe
commit 5ccf87c845
1 changed files with 0 additions and 4 deletions

View File

@ -3970,8 +3970,6 @@ evas_object_image_render(Evas_Object *eo_obj, Evas_Object_Protected_Data *obj, v
// fix impossible border settings if img pixels not enough // fix impossible border settings if img pixels not enough
if ((bl + br) > imw) if ((bl + br) > imw)
{ {
int b0 = bl, b1 = br;
if ((bl + br) > 0) if ((bl + br) > 0)
{ {
bl = (bl * imw) / (bl + br); bl = (bl * imw) / (bl + br);
@ -3980,8 +3978,6 @@ evas_object_image_render(Evas_Object *eo_obj, Evas_Object_Protected_Data *obj, v
} }
if ((bt + bb) > imh) if ((bt + bb) > imh)
{ {
int b0 = bt, b1 = bb;
if ((bt + bb) > 0) if ((bt + bb) > 0)
{ {
bt = (bt * imh) / (bt + bb); bt = (bt * imh) / (bt + bb);