From 8c703c1e6ea7d0ef63a2773838a593ed14e03c28 Mon Sep 17 00:00:00 2001 From: Andrey Kiselev Date: Mon, 31 Oct 2005 13:08:19 +0000 Subject: [PATCH] Fixed typeshift and typemask arrays initialization problem as per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=946 --- tools/tiffdump.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/tiffdump.c b/tools/tiffdump.c index 5c6f83e8..44ba99a0 100644 --- a/tools/tiffdump.c +++ b/tools/tiffdump.c @@ -1,4 +1,4 @@ -/* $Id: tiffdump.c,v 1.11 2005-09-28 12:10:22 dron Exp $ */ +/* $Id: tiffdump.c,v 1.12 2005-10-31 13:08:19 dron Exp $ */ /* * Copyright (c) 1988-1997 Sam Leffler @@ -56,8 +56,8 @@ char* appname; char* curfile; int swabflag; int bigendian; -int typeshift[13]; /* data type shift counts */ -long typemask[13]; /* data type masks */ +int typeshift[14]; /* data type shift counts */ +long typemask[14]; /* data type masks */ uint32 maxitems = 24; /* maximum indirect data items to print */ char* bytefmt = "%s%#02x"; /* BYTE */