From bed170b77cddb580ddf2b8c3dacec0c33a6ff906 Mon Sep 17 00:00:00 2001 From: sebastid Date: Thu, 21 Sep 2006 19:37:04 +0000 Subject: [PATCH] Return a value. SVN revision: 26001 --- src/bin/e_container.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_container.c b/src/bin/e_container.c index 25fd7a0be..771fd2b60 100644 --- a/src/bin/e_container.c +++ b/src/bin/e_container.c @@ -646,7 +646,7 @@ e_container_border_raise(E_Border *bd) Evas_List *l; int pos = 0, i; - if (!bd->zone) return; + if (!bd->zone) return NULL; /* Remove from old layer */ for (i = 0; i < 7; i++) { @@ -700,7 +700,7 @@ e_container_border_lower(E_Border *bd) Evas_List *l; int pos = 0, i; - if (!bd->zone) return; + if (!bd->zone) return NULL; /* Remove from old layer */ for (i = 0; i < 7; i++) {