summaryrefslogtreecommitdiff
path: root/image
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-09-15 23:20:07 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-09-15 23:20:07 +0000
commita001437a66377a35319e2dc549353f773a69ffb5 (patch)
treec62c802784a3c7e6f0634b474be7c9ea35fa7956 /image
parent18fef974efa641c43bfbf962b1106afde1ab0957 (diff)
downloadnetsurf-a001437a66377a35319e2dc549353f773a69ffb5.tar.gz
netsurf-a001437a66377a35319e2dc549353f773a69ffb5.tar.bz2
Potentially squash warnings
svn path=/trunk/netsurf/; revision=5341
Diffstat (limited to 'image')
-rw-r--r--image/jpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/image/jpeg.c b/image/jpeg.c
index 6bc39766e..7fc0b02e8 100644
--- a/image/jpeg.c
+++ b/image/jpeg.c
@@ -82,8 +82,8 @@ bool nsjpeg_convert(struct content *c, int w, int h)
nsjpeg_term_source };
unsigned int height;
unsigned int width;
- struct bitmap *bitmap = NULL;
- uint8_t *pixels = NULL;
+ struct bitmap * volatile bitmap = NULL;
+ uint8_t * volatile pixels = NULL;
size_t rowstride;
union content_msg_data msg_data;