summaryrefslogtreecommitdiff
path: root/libtiff/tif_print.c
diff options
context:
space:
mode:
authordron <dron>2004-10-10 11:54:54 +0000
committerdron <dron>2004-10-10 11:54:54 +0000
commit429a97abe3f87ee7c5739a14795fc1593ea67c3d (patch)
tree2a464b79a0cad950991d1929874001b87400d96e /libtiff/tif_print.c
parent0bd4e234db7c073211ea81f92fb241cf812ee320 (diff)
downloadlibtiff-429a97abe3f87ee7c5739a14795fc1593ea67c3d.tar.gz
Casting fixes.
Diffstat (limited to 'libtiff/tif_print.c')
-rw-r--r--libtiff/tif_print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtiff/tif_print.c b/libtiff/tif_print.c
index d86dee3c..9527bf06 100644
--- a/libtiff/tif_print.c
+++ b/libtiff/tif_print.c
@@ -1,4 +1,4 @@
-/* $Id: tif_print.c,v 1.18 2004-10-01 02:30:29 fwarmerdam Exp $ */
+/* $Id: tif_print.c,v 1.19 2004-10-10 11:56:03 dron Exp $ */
/*
* Copyright (c) 1988-1997 Sam Leffler
@@ -73,7 +73,7 @@ TIFFPrintDirectory(TIFF* tif, FILE* fd, long flags)
long l, n;
fprintf(fd, "TIFF Directory at offset 0x%lx\n",
- (unsigned int)tif->tif_diroff);
+ (unsigned long)tif->tif_diroff);
td = &tif->tif_dir;
if (TIFFFieldSet(tif,FIELD_SUBFILETYPE)) {
fprintf(fd, " Subfile Type:");