summaryrefslogtreecommitdiff
path: root/tools/tiffinfo.c
diff options
context:
space:
mode:
authorAndrey Kiselev <dron@ak4719.spb.edu>2004-06-04 11:50:09 +0000
committerAndrey Kiselev <dron@ak4719.spb.edu>2004-06-04 11:50:09 +0000
commit37001a073eae5eb10fa62156422290e781318a78 (patch)
tree33fcbf120729b3db0c4f49378d240a67619b8433 /tools/tiffinfo.c
parent1432ba20b1847a6934cac46ecfbc7d5d3bceb398 (diff)
downloadlibtiff-git-37001a073eae5eb10fa62156422290e781318a78.tar.gz
Avoid warnings.
Diffstat (limited to 'tools/tiffinfo.c')
-rw-r--r--tools/tiffinfo.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/tiffinfo.c b/tools/tiffinfo.c
index c136b50f..88aa492d 100644
--- a/tools/tiffinfo.c
+++ b/tools/tiffinfo.c
@@ -1,4 +1,4 @@
-/* $Id: tiffinfo.c,v 1.3 2004-04-15 10:44:32 dron Exp $ */
+/* $Id: tiffinfo.c,v 1.4 2004-06-04 11:50:09 dron Exp $ */
/*
* Copyright (c) 1988-1997 Sam Leffler
@@ -44,7 +44,8 @@ static void tiffinfo(TIFF*, uint16, long);
int
main(int argc, char* argv[])
{
- int dirnum = -1, multiplefiles, c;
+ tdir_t dirnum = -1;
+ int multiplefiles, c;
uint16 order = 0;
TIFF* tif;
extern int optind;