summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Kiselev <dron@ak4719.spb.edu>2005-06-29 10:21:35 +0000
committerAndrey Kiselev <dron@ak4719.spb.edu>2005-06-29 10:21:35 +0000
commite7201f6204475f3026cac1e2e5cbf319ac73c06a (patch)
treea7a43646e431310494ba0a6368fe3803327d29d0
parent92b8560380af83f035924b3f53a74c340ee580d9 (diff)
downloadlibtiff-git-e7201f6204475f3026cac1e2e5cbf319ac73c06a.tar.gz
tif_nfields should be of size_t type.
-rw-r--r--libtiff/tiffiop.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtiff/tiffiop.h b/libtiff/tiffiop.h
index b55ea076..4435c72d 100644
--- a/libtiff/tiffiop.h
+++ b/libtiff/tiffiop.h
@@ -1,4 +1,4 @@
-/* $Id: tiffiop.h,v 1.34 2005-06-28 15:30:06 dron Exp $ */
+/* $Id: tiffiop.h,v 1.35 2005-06-29 10:21:35 dron Exp $ */
/*
* Copyright (c) 1988-1997 Sam Leffler
@@ -173,7 +173,7 @@ struct tiff {
TIFFPostMethod tif_postdecode; /* post decoding routine */
/* tag support */
TIFFFieldInfo** tif_fieldinfo; /* sorted table of registered tags */
- uint32 tif_nfields; /* # entries in registered tag table */
+ size_t tif_nfields; /* # entries in registered tag table */
const TIFFFieldInfo *tif_foundfield;/* cached pointer to already found tag */
TIFFTagMethods tif_tagmethods; /* tag get/set/print routines */
TIFFClientInfoLink *tif_clientinfo; /* extra client information. */