From d752e9b818d1ff7f5d9c1739058f0c5c5d43c23b Mon Sep 17 00:00:00 2001 From: tsauerbeck Date: Sun, 2 Jan 2005 17:24:48 +0000 Subject: [PATCH] ignoring compiler warnings = bad SVN revision: 12691 --- src/bin/e_box.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_box.c b/src/bin/e_box.c index 216050e19..65cb5ae6f 100644 --- a/src/bin/e_box.c +++ b/src/bin/e_box.c @@ -426,7 +426,7 @@ _e_box_smart_reconfigure(E_Smart_Data *sd) hh = h; ow = bi->min.w; if (bi->expand_w) ow = ww; - if ((bi->max.w >= 0) && (bi->max.w < oh)) ow = bi->max.w; + if ((bi->max.w >= 0) && (bi->max.w < ow)) ow = bi->max.w; oh = bi->min.h; if (bi->expand_h) oh = hh; if ((bi->max.h >= 0) && (bi->max.h < oh)) oh = bi->max.h;