about summary refs log tree commit diff
path: root/converter
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2006-12-03 16:08:00 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2006-12-03 16:08:00 +0000
commit8e01637df59e9a366dede344bfb0df4343f540eb (patch)
tree983ca737ba523ba57e12b9c3b502db9f63c15619 /converter
parentacd527864efe6651f58a291ec6d707188ea20b29 (diff)
downloadnetpbm-mirror-8e01637df59e9a366dede344bfb0df4343f540eb.tar.gz
netpbm-mirror-8e01637df59e9a366dede344bfb0df4343f540eb.tar.xz
netpbm-mirror-8e01637df59e9a366dede344bfb0df4343f540eb.zip
Release 10.35.19
git-svn-id: http://svn.code.sf.net/p/netpbm/code/stable@163 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter')
-rw-r--r--converter/other/pnmtopng.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/converter/other/pnmtopng.c b/converter/other/pnmtopng.c
index 9287d0ee..ed245b93 100644
--- a/converter/other/pnmtopng.c
+++ b/converter/other/pnmtopng.c
@@ -999,7 +999,7 @@ analyzeAlpha(FILE *     const ifp,
             for (col = 0; col < cols && !foundTransparentPixel; ++col) {
                 if (alphaMask[row][col] == 0) {
                     foundTransparentPixel = TRUE;
-                    transcolor = xeltopixel(xelrow[col]);
+                    transcolor = pnm_xeltopixel(xelrow[col], format);
                 }
             }
         }