summaryrefslogtreecommitdiff
path: root/atari/misc.c
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2013-09-16 02:04:29 +0200
committerOle Loots <ole@monochrom.net>2013-10-06 01:24:15 +0200
commitce270a7e082e74f6f5a3f476724b6344a302dbee (patch)
tree8f3dddb32354b083e3ae06e030491dc3c25941d6 /atari/misc.c
parent258477ad283e4d113708b21f0ba317b20d26766a (diff)
downloadnetsurf-ce270a7e082e74f6f5a3f476724b6344a302dbee.tar.gz
netsurf-ce270a7e082e74f6f5a3f476724b6344a302dbee.tar.bz2
Added RECT_TO_GRECT macro
Diffstat (limited to 'atari/misc.c')
-rwxr-xr-xatari/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/atari/misc.c b/atari/misc.c
index 974d37e69..7e054c840 100755
--- a/atari/misc.c
+++ b/atari/misc.c
@@ -121,8 +121,8 @@ struct gui_window * find_guiwin_by_aes_handle(short handle){
}
while(gw != NULL) {
- if( gw->root->win != NULL
- && gemtk_wm_get_handle(gw->root->win) == handle ) {
+ if(gw->root->win != NULL
+ && gemtk_wm_get_handle(gw->root->win) == handle) {
return(gw);
}
else