summaryrefslogtreecommitdiff
path: root/libtiff/tif_print.c
diff options
context:
space:
mode:
authorjoris <joris>2007-06-12 13:07:32 +0000
committerjoris <joris>2007-06-12 13:07:32 +0000
commit56b14d8979629aa120ad087f300ff5e4fc551408 (patch)
tree6e883363b6f1be6668c6194440fd21afb77f93ef /libtiff/tif_print.c
parent83665e092198f1c68eb4600db8c4eb350e334ff4 (diff)
downloadlibtiff-56b14d8979629aa120ad087f300ff5e4fc551408.tar.gz
BigTIFF upgrade: type restoration - not so messy anymore
Diffstat (limited to 'libtiff/tif_print.c')
-rw-r--r--libtiff/tif_print.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libtiff/tif_print.c b/libtiff/tif_print.c
index 98ff149a..5a6b0d7c 100644
--- a/libtiff/tif_print.c
+++ b/libtiff/tif_print.c
@@ -1,4 +1,4 @@
-/* $Id: tif_print.c,v 1.42 2007-06-08 09:10:21 joris Exp $ */
+/* $Id: tif_print.c,v 1.43 2007-06-12 13:07:33 joris Exp $ */
/*
* Copyright (c) 1988-1997 Sam Leffler
@@ -199,8 +199,8 @@ TIFFPrintDirectory(TIFF* tif, FILE* fd, long flags)
uint16 i;
long l, n;
- fprintf(fd, "TIFF Directory at offset 0x%lx (%lu)\n",
- (unsigned long)tif->tif_diroff, (unsigned long)tif->tif_diroff);
+ fprintf(fd, "TIFF Directory at offset 0x%llx (%llu)\n",
+ tif->tif_diroff, tif->tif_diroff);
if (TIFFFieldSet(tif,FIELD_SUBFILETYPE)) {
fprintf(fd, " Subfile Type:");
sep = " ";