summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2010-06-28 11:31:51 +0000
committerVincent Sanders <vince@netsurf-browser.org>2010-06-28 11:31:51 +0000
commitbd6c8840206cc9a378a82035914ce48df5fd2534 (patch)
tree2fb11546e1a0199bfc050ff3d05d7c3b994d46f1
parent73d73eee2732759388cc02bc4ad4b784c3432e21 (diff)
downloadnetsurf-bd6c8840206cc9a378a82035914ce48df5fd2534.tar.gz
netsurf-bd6c8840206cc9a378a82035914ce48df5fd2534.tar.bz2
Fix up confusing formatting
svn path=/trunk/netsurf/; revision=10586
-rw-r--r--desktop/tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/tree.c b/desktop/tree.c
index ee0cfc3da..295bef195 100644
--- a/desktop/tree.c
+++ b/desktop/tree.c
@@ -606,11 +606,11 @@ void tree_handle_selection_area(struct tree *tree, int x, int y, int width, int
if (width < 0) {
x += width;
- width =- width;
+ width = -width;
}
if (height < 0) {
y += height;
- height =- height;
+ height = -height;
}
tree_handle_selection_area_node(tree, tree->root->child, x, y, width, height, invert);