From a66cd88a76782d026f20a834ae03bcea0fb309a1 Mon Sep 17 00:00:00 2001 From: erouault Date: Sun, 10 Jul 2016 16:56:18 +0000 Subject: Fix build failure due to previous commit --- tools/tiffdump.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/tiffdump.c b/tools/tiffdump.c index 51d6c571..dc84b461 100644 --- a/tools/tiffdump.c +++ b/tools/tiffdump.c @@ -1,4 +1,4 @@ -/* $Id: tiffdump.c,v 1.33 2016-07-10 15:34:07 erouault Exp $ */ +/* $Id: tiffdump.c,v 1.34 2016-07-10 16:56:18 erouault Exp $ */ /* * Copyright (c) 1988-1997 Sam Leffler @@ -771,12 +771,13 @@ PrintData(FILE* fd, uint16 type, uint32 count, unsigned char* data) } case TIFF_SLONG8: { int64 *llp = (int64*)data; - while (count-- > 0) + while (count-- > 0) { int64 val; memcpy(&val, llp, sizeof(int64)); llp ++; fprintf(fd, slong8fmt, sep, val); sep = " "; + } break; } case TIFF_RATIONAL: { -- cgit v1.2.1