From 301f134b9034170e6e26aa307e5ede741db1cf70 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Mon, 18 Aug 2014 17:10:56 +0200 Subject: [PATCH] whitespaces --- src/gwin/frame.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gwin/frame.c b/src/gwin/frame.c index ec0bf632..f24ad569 100644 --- a/src/gwin/frame.c +++ b/src/gwin/frame.c @@ -304,10 +304,10 @@ void gwinFrameDraw_Std(GWidgetObject *gw, void *param) { // Draw the client area by tiling the image mx = gw->g.x+gw->g.width - BORDER_R; my = gw->g.y+gw->g.height - BORDER_B; - for(y = gw->g.y+BORDER_T, ih=gi->height; y < my; y += ih) { + for(y = gw->g.y+BORDER_T, ih = gi->height; y < my; y += ih) { if (ih > my - y) ih = my - y; - for(x = gw->g.x+BORDER_L; iw=gi->width; x < mx; x += iw) { + for(x = gw->g.x+BORDER_L; iw = gi->width; x < mx; x += iw) { if (iw > mx - x) iw = mx - x; gdispGImageDraw(gw->g.display, gi, x, y, ih, iw, 0, 0);