From 22e7a09bcb50b0fc8d17b4f36651922fad8c9bbb Mon Sep 17 00:00:00 2001 From: sebastid Date: Thu, 8 Jun 2006 19:05:41 +0000 Subject: [PATCH] Fix warning SVN revision: 23299 --- src/bin/e_place.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_place.c b/src/bin/e_place.c index 76731b677..2b26cddb9 100644 --- a/src/bin/e_place.c +++ b/src/bin/e_place.c @@ -493,7 +493,7 @@ e_place_zone_cursor(E_Zone *zone, int x, int y, int w, int h, int it, int *rx, i int cursor_x = 0, cursor_y = 0; int zone_right, zone_bottom; - E_OBJECT_CHECK(zone); + E_OBJECT_CHECK_RETURN(zone, 0); ecore_x_pointer_xy_get(zone->container->win, &cursor_x, &cursor_y); *rx = cursor_x - (w >> 1);