diff options
author | Darin Adler <darin@src.gnome.org> | 2001-07-18 04:25:04 +0000 |
---|---|---|
committer | Darin Adler <darin@src.gnome.org> | 2001-07-18 04:25:04 +0000 |
commit | b0bb5ac3047f37ddf1a0a9b9c699cccb3b2a097f (patch) | |
tree | 8e7c773504d45479feff798d0883a47228a00071 /gdk-pixbuf/io-wbmp.c | |
parent | fa506b18f154287eb90273439fb9e3e29f1c75f3 (diff) | |
download | gtk+-b0bb5ac3047f37ddf1a0a9b9c699cccb3b2a097f.tar.gz |
Add missing <stdlib.h> include. Add ifdef so we compile without warnings
* gdk-pixbuf-csource.c: Add missing <stdlib.h> include.
* io-png.c: (setup_png_transformations): Add ifdef so we compile
without warnings with G_DISABLE_CHECKS on.
* io-pnm.c: (gdk_pixbuf__pnm_image_load_increment): Add a missing
const.
* io-wbmp.c: (getin), (get_mbi): Add a missing const.
* io-xbm.c: (gdk_pixbuf__xbm_image_load_real): Get rid of some
unused locals and add an initial value to quiet the compiler's
unintialized variable warning.
* pixops/pixops.c: Put an ifdef around some dead code.
Diffstat (limited to 'gdk-pixbuf/io-wbmp.c')
-rw-r--r-- | gdk-pixbuf/io-wbmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk-pixbuf/io-wbmp.c b/gdk-pixbuf/io-wbmp.c index 1537d83d62..c495b21cbf 100644 --- a/gdk-pixbuf/io-wbmp.c +++ b/gdk-pixbuf/io-wbmp.c @@ -160,7 +160,7 @@ static gboolean gdk_pixbuf__wbmp_image_stop_load(gpointer data, } static gboolean -getin(struct wbmp_progressive_state *context, guchar **buf, guint *buf_size, guchar *ptr, int datum_size) +getin(struct wbmp_progressive_state *context, const guchar **buf, guint *buf_size, guchar *ptr, int datum_size) { int last_num, buf_num; @@ -195,7 +195,7 @@ save_rest(struct wbmp_progressive_state *context, const guchar *buf, guint buf_s } static gboolean -get_mbi(struct wbmp_progressive_state *context, guchar **buf, guint *buf_size, int *val) +get_mbi(struct wbmp_progressive_state *context, const guchar **buf, guint *buf_size, int *val) { guchar intbuf[16]; int i, n; |