about summary refs log tree commit diff
path: root/converter/other
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2016-05-03 05:25:59 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2016-05-03 05:25:59 +0000
commitbd2b6ac404b62193d9dbd30bee1d50c907aeff96 (patch)
treea2a722b7d9449ab24b2b42359cfdceb3ccbbd48e /converter/other
parent2c11ab9d3453d471594a0b379e4c2b3ea2b441d3 (diff)
downloadnetpbm-mirror-bd2b6ac404b62193d9dbd30bee1d50c907aeff96.tar.gz
netpbm-mirror-bd2b6ac404b62193d9dbd30bee1d50c907aeff96.tar.xz
netpbm-mirror-bd2b6ac404b62193d9dbd30bee1d50c907aeff96.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2745 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other')
-rw-r--r--converter/other/cameratopam/camera.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/other/cameratopam/camera.c b/converter/other/cameratopam/camera.c
index a1adba95..04a6ed01 100644
--- a/converter/other/cameratopam/camera.c
+++ b/converter/other/cameratopam/camera.c
@@ -1504,12 +1504,12 @@ get_timestamp(FILE * const ifp)
 static void 
 parse_exif(FILE * const ifp, int base)
 {
-  int entries, tag, type, len, val, save;
+  int entries, tag, len, val, save;
 
   entries = get2(ifp);
   while (entries--) {
     tag  = get2(ifp);
-    type = get2(ifp);
+    /* type = */ get2(ifp);
     len  = get4(ifp);
     val  = get4(ifp);
     save = ftell(ifp);