diff --git a/coders/miff.c b/coders/miff.c
index 36fe18d..1299413 100644
--- a/coders/miff.c
+++ b/coders/miff.c
@@ -2159,8 +2159,8 @@
             }
           zip_info.next_in=pixels;
           zip_info.avail_in=(uInt) (packet_size*image->columns);
-          (void) ExportQuantumPixels(image,(const CacheView *) NULL,quantum_info,
-            quantum_type,pixels,&image->exception);
+          (void) ExportQuantumPixels(image,(const CacheView *) NULL,
+            quantum_info,quantum_type,pixels,&image->exception);
           do
           {
             zip_info.next_out=compress_pixels;
@@ -2214,8 +2214,8 @@
             }
           bzip_info.next_in=(char *) pixels;
           bzip_info.avail_in=(unsigned int) (packet_size*image->columns);
-          (void) ExportQuantumPixels(image,(const CacheView *) NULL,quantum_info,
-            quantum_type,pixels,&image->exception);
+          (void) ExportQuantumPixels(image,(const CacheView *) NULL,
+            quantum_info,quantum_type,pixels,&image->exception);
           do
           {
             bzip_info.next_out=(char *) compress_pixels;