From b343064afcecd43318adf4f5404facadfa17a5b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Walenciak?= Date: Sat, 9 Sep 2017 14:29:43 +0200 Subject: [PATCH] comments format --- bigtiff/parse.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bigtiff/parse.cpp b/bigtiff/parse.cpp index 0c21842e..5e46cd7b 100644 --- a/bigtiff/parse.cpp +++ b/bigtiff/parse.cpp @@ -303,7 +303,7 @@ void printIFD(Exiv2::BasicIo& io, std::ostream& out, Exiv2::PrintStructureOption Exiv2::DataBuf buf(size*count + pad); // allocate a buffer // big data? Use 'data' as pointer to real data - if ( count*size > 8 ) // read into buffer + if ( count*size > 8 ) // read into buffer { size_t restore = io.tell(); // save io.seek(data, Exiv2::BasicIo::beg); // position @@ -311,7 +311,7 @@ void printIFD(Exiv2::BasicIo& io, std::ostream& out, Exiv2::PrintStructureOption io.seek(restore, Exiv2::BasicIo::beg); // restore } else // use 'data' as data :) - std::memcpy(buf.pData_, &data, 8); // copy data + std::memcpy(buf.pData_, &data, 8); // copy data if ( bPrint ) {