summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2010-06-04 09:39:30 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2010-06-04 09:39:30 +0000
commit6c59c80ed5577afe557aaa3c64a30466b3c9516f (patch)
tree004122cc60f01395bcc694ff21b030a12a89b553 /render
parentb010a257712b3d104035cbfc15aba8f517ffacb5 (diff)
downloadnetsurf-6c59c80ed5577afe557aaa3c64a30466b3c9516f.tar.gz
netsurf-6c59c80ed5577afe557aaa3c64a30466b3c9516f.tar.bz2
s/int/size_t/
svn path=/trunk/netsurf/; revision=10562
Diffstat (limited to 'render')
-rw-r--r--render/html_interaction.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/html_interaction.c b/render/html_interaction.c
index 90f8fe25f..8cbd2c143 100644
--- a/render/html_interaction.c
+++ b/render/html_interaction.c
@@ -831,7 +831,7 @@ size_t html_selection_drag_end(hlcache_handle *h, browser_mouse_state mouse,
int pixel_offset;
struct box *box;
int dx, dy;
- int idx = 0;
+ size_t idx = 0;
box = box_pick_text_box(h, x, y, dir, &dx, &dy);
if (box) {