diff src/glyphs-x.c @ 183:e121b013d1f0 r20-3b18

Import from CVS: tag r20-3b18
author cvs
date Mon, 13 Aug 2007 09:54:23 +0200
parents 0132846995bd
children 3d6bfa290dbd
line wrap: on
line diff
--- a/src/glyphs-x.c	Mon Aug 13 09:53:23 2007 +0200
+++ b/src/glyphs-x.c	Mon Aug 13 09:54:23 2007 +0200
@@ -1383,7 +1383,7 @@
 
   /* Step 3: read file parameters with jpeg_read_header() */
 
-  (void) jpeg_read_header (&cinfo, TRUE);
+  jpeg_read_header (&cinfo, TRUE);
   /* We can ignore the return value from jpeg_read_header since
    *   (a) suspension is not possible with the stdio data source, and
    *   (b) we passed TRUE to reject a tables-only JPEG file as an error.
@@ -1418,7 +1418,7 @@
 
   /* Step 5: Start decompressor */
 
-  (void) jpeg_start_decompress (&cinfo);
+  jpeg_start_decompress (&cinfo);
   /* We can ignore the return value since suspension is not possible
    * with the stdio data source.
    */
@@ -1544,7 +1544,7 @@
 
   /* Step 7: Finish decompression */
 
-  (void) jpeg_finish_decompress (&cinfo);
+  jpeg_finish_decompress (&cinfo);
   /* We can ignore the return value since suspension is not possible
    * with the stdio data source.
    */