about summary refs log tree commit diff
path: root/other
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-08-08 20:31:53 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-08-08 20:31:53 +0000
commit20969ec2f50dfc2144588cef9a846b9a8aedf365 (patch)
tree69f591008aa63ce409b9347864c3e7e3e6692f12 /other
parent94549121df7aa4d675ec6641d41de31bb8b8f6ac (diff)
downloadnetpbm-mirror-20969ec2f50dfc2144588cef9a846b9a8aedf365.tar.gz
netpbm-mirror-20969ec2f50dfc2144588cef9a846b9a8aedf365.tar.xz
netpbm-mirror-20969ec2f50dfc2144588cef9a846b9a8aedf365.zip
fix compiler warning
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2626 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'other')
-rw-r--r--other/pamlookup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/other/pamlookup.c b/other/pamlookup.c
index 83f8a68c..4ceb047f 100644
--- a/other/pamlookup.c
+++ b/other/pamlookup.c
@@ -279,7 +279,7 @@ doLookupByPlane(struct pam const indexpam,
                 if (index > lookuppam.maxval)
                     pm_error("Sample value %u in the lookup image exceeds "
                              "the lookup image's maxval (%u)",
-                             index, lookuppam.maxval);
+                             index, (unsigned)lookuppam.maxval);
 
                 tuplerowOut[col][plane] = lookup[0][index][0];
             }