summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-05-09 10:05:10 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-05-09 10:05:10 +0000
commit2fbce3df3f884ea8a8a8c7fc6b4614a14aed7057 (patch)
tree803d0822594ee59d2939f7f8cebbefd0f670248a
parent046d615a5dd607bc89362d8bbba2c83d279a3ea9 (diff)
downloadnetsurf-2fbce3df3f884ea8a8a8c7fc6b4614a14aed7057.tar.gz
netsurf-2fbce3df3f884ea8a8a8c7fc6b4614a14aed7057.tar.bz2
Wrap fix.
svn path=/trunk/netsurf/; revision=12338
-rw-r--r--image/gif.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/image/gif.c b/image/gif.c
index 798097bf5..5812952c1 100644
--- a/image/gif.c
+++ b/image/gif.c
@@ -360,7 +360,8 @@ static bool nsgif_redraw(struct content *c, int x, int y,
if (repeat_y)
flags |= BITMAPF_REPEAT_Y;
- return plot.bitmap(x, y, width, height, c->bitmap, background_colour, flags);
+ return plot.bitmap(x, y, width, height, c->bitmap,
+ background_colour, flags);
}