Blob Blame History Raw
--- gdk-pixbuf/io-jpeg.c.orig	2009-08-20 14:44:30.795114182 +0200
+++ gdk-pixbuf/io-jpeg.c	2009-08-20 14:45:14.220875249 +0200
@@ -204,7 +204,7 @@
 
   FILE * infile;		/* source stream */
   JOCTET * buffer;		/* start of buffer */
-  boolean start_of_file;	/* have we gotten any data yet? */
+  jpeg_boolean start_of_file;	/* have we gotten any data yet? */
 } stdio_source_mgr;
 
 typedef stdio_source_mgr * stdio_src_ptr;
@@ -216,7 +216,7 @@
   src->start_of_file = FALSE;
 }
 
-static boolean
+static jpeg_boolean
 stdio_fill_input_buffer (j_decompress_ptr cinfo)
 {
   stdio_src_ptr src = (stdio_src_ptr) cinfo->src;
@@ -605,7 +605,7 @@
 
 /* for progressive loading (called "I/O Suspension" by libjpeg docs) */
 /* we do nothing except return "FALSE"                               */
-static boolean
+static jpeg_boolean
 fill_input_buffer (j_decompress_ptr cinfo)
 {
 	return FALSE;
@@ -1068,7 +1068,7 @@
         }
 }
 
-static boolean
+static jpeg_boolean
 to_callback_empty_output_buffer (j_compress_ptr cinfo)
 {
 	ToFunctionDestinationManager *destmgr;