summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2013-09-16 02:04:29 +0200
committerOle Loots <ole@monochrom.net>2013-09-16 02:04:29 +0200
commita178aa5082e2670103ae15847e33ea3d56b67ba7 (patch)
tree713504153b2793552571d3aa1017d6913986c265
parent3e32688d0147fd8e12fd2e0fe74a4d9ea3b06ab1 (diff)
downloadnetsurf-a178aa5082e2670103ae15847e33ea3d56b67ba7.tar.gz
netsurf-a178aa5082e2670103ae15847e33ea3d56b67ba7.tar.bz2
Added RECT_TO_GRECT macro
-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