about summary refs log tree commit diff
path: root/converter
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2018-06-27 01:40:45 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2018-06-27 01:40:45 +0000
commit67f4338ccd643cb39a3f50ec6910cab5fce14a3e (patch)
tree1ab5e4f4819c043785ed59f7c6a3241d55e3b584 /converter
parent93c00cdaf1733e3f6b28b2b7e77712e8c3ca6546 (diff)
downloadnetpbm-mirror-67f4338ccd643cb39a3f50ec6910cab5fce14a3e.tar.gz
netpbm-mirror-67f4338ccd643cb39a3f50ec6910cab5fce14a3e.tar.xz
netpbm-mirror-67f4338ccd643cb39a3f50ec6910cab5fce14a3e.zip
whitespace
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3265 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter')
-rw-r--r--converter/other/pngx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/converter/other/pngx.c b/converter/other/pngx.c
index a5171066..06b8a513 100644
--- a/converter/other/pngx.c
+++ b/converter/other/pngx.c
@@ -323,7 +323,7 @@ void
 pngx_setChrm(struct pngx *      const pngxP,
              struct pngx_chroma const chroma) {
 
-    png_set_cHRM(pngxP->png_ptr, pngxP->info_ptr, 
+    png_set_cHRM(pngxP->png_ptr, pngxP->info_ptr,
                  chroma.wx, chroma.wy,
                  chroma.rx, chroma.ry,
                  chroma.gx, chroma.gy,
@@ -460,7 +460,7 @@ void
 pngx_setPhys(struct pngx *    const pngxP,
              struct pngx_phys const phys) {
 
-    png_set_pHYs(pngxP->png_ptr, pngxP->info_ptr, 
+    png_set_pHYs(pngxP->png_ptr, pngxP->info_ptr,
                  phys.x, phys.y, phys.unit);
 }
 
@@ -664,7 +664,7 @@ pngx_readStart(struct pngx * const pngxP,
                FILE *        const ifP) {
 
     size_t sigByteCt;
-            
+
     verifyFileIsPng(ifP, &sigByteCt);
 
     /* Declare that we already read the signature bytes */
@@ -711,7 +711,7 @@ pngx_writeRow(struct pngx *    const pngxP,
 void
 pngx_readEnd(struct pngx * const pngxP) {
 
-    /* Note that some of info_ptr is not defined until png_read_end() 
+    /* Note that some of info_ptr is not defined until png_read_end()
        completes.  That's because it comes from chunks that are at the
        end of the stream.  In particular, text and time chunks may
        be at the end.  Furthermore, they may be in both places, in