summaryrefslogtreecommitdiff
path: root/amiga/gui.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-12-04 12:18:36 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2014-12-04 12:18:36 +0000
commit60877b6ff5d0b552197e8e07075934294563fe58 (patch)
tree40b175bdf1cbeb329ab0b43c853d847a24ca49e0 /amiga/gui.c
parent4af70cd1ac87b1fe02c3783950454c5733b9a0c7 (diff)
downloadnetsurf-60877b6ff5d0b552197e8e07075934294563fe58.tar.gz
netsurf-60877b6ff5d0b552197e8e07075934294563fe58.tar.bz2
Fix missmatched bracket.
Diffstat (limited to 'amiga/gui.c')
-rw-r--r--amiga/gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 1e3389da4..423426aa2 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -4712,7 +4712,7 @@ static void gui_window_set_scroll(struct gui_window *g, int sx, int sy)
if(sx >= width - bbox->Width)
sx = width - bbox->Width;
- if(sy >= height - bbox->Height))
+ if(sy >= height - bbox->Height)
sy = height - bbox->Height;
if(width <= bbox->Width) sx = 0;