summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/pixops
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2001-07-18 04:25:04 +0000
committerDarin Adler <darin@src.gnome.org>2001-07-18 04:25:04 +0000
commitb0bb5ac3047f37ddf1a0a9b9c699cccb3b2a097f (patch)
tree8e7c773504d45479feff798d0883a47228a00071 /gdk-pixbuf/pixops
parentfa506b18f154287eb90273439fb9e3e29f1c75f3 (diff)
downloadgdk-pixbuf-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/pixops')
-rw-r--r--gdk-pixbuf/pixops/pixops.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdk-pixbuf/pixops/pixops.c b/gdk-pixbuf/pixops/pixops.c
index 7a13e043b..0dc51d9f7 100644
--- a/gdk-pixbuf/pixops/pixops.c
+++ b/gdk-pixbuf/pixops/pixops.c
@@ -818,6 +818,7 @@ scale_line_22_33_mmx_stub (int *weights, int n_x, int n_y,
}
#endif /* USE_MMX */
+#ifdef SCALE_LINE_22_33_USED /* This dead code would need changes if we wanted to use it */
static guchar *
scale_line_22_33 (int *weights, int n_x, int n_y,
guchar *dest, guchar *dest_end, int dest_channels, int dest_has_alpha,
@@ -874,6 +875,7 @@ scale_line_22_33 (int *weights, int n_x, int n_y,
return dest;
}
+#endif /* SCALE_LINE_22_33_USED */
static void
process_pixel (int *weights, int n_x, int n_y,