about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-01-31 21:36:52 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-01-31 21:36:52 +0000
commit594a3b297125ab930d1b0ef1705085d3c2453d4b (patch)
tree0bb333471c29ae78146a16e7a90af1e1d69917b0
parentc43d3dce72fb796dc578e603d1c7d054d04e6391 (diff)
downloadnetpbm-mirror-594a3b297125ab930d1b0ef1705085d3c2453d4b.tar.gz
netpbm-mirror-594a3b297125ab930d1b0ef1705085d3c2453d4b.tar.xz
netpbm-mirror-594a3b297125ab930d1b0ef1705085d3c2453d4b.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@220 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--converter/other/pamtogif.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/converter/other/pamtogif.c b/converter/other/pamtogif.c
index c0c98bd1..5061ff77 100644
--- a/converter/other/pamtogif.c
+++ b/converter/other/pamtogif.c
@@ -1398,12 +1398,12 @@ gifEncode(struct pam *  const pamP,
     reportImageInfo(gInterlace, background, bitsPerPixel);
     
     if (pamP->width > 65535)
-      pm_error("Image width %u too large for GIF format.  (Max 65535)",
-                pamP->width );  
+        pm_error("Image width %u too large for GIF format.  (Max 65535)",
+                 pamP->width);
     
     if (pamP->height > 65535)
-      pm_error("Image height %u too large for GIF format.  (Max 65535)",
-                pamP->height );  
+        pm_error("Image height %u too large for GIF format.  (Max 65535)",
+                 pamP->height);
 
     writeGifHeader(ofP, pamP->width, pamP->height, background,
                    bitsPerPixel, cmapP, comment);