From 93d8dd7e1fe76a03ddb4c8b0cca834b4fe7bc1c8 Mon Sep 17 00:00:00 2001 From: Andreas Huggel Date: Wed, 28 Jul 2004 15:55:07 +0000 Subject: [PATCH] Fix for masked Exiv2::ifd1 (Joseph Heled) --- src/exif.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/exif.cpp b/src/exif.cpp index 51bd7e54..07c9fad3 100644 --- a/src/exif.cpp +++ b/src/exif.cpp @@ -20,14 +20,14 @@ */ /* File: exif.cpp - Version: $Name: $ $Revision: 1.50 $ + Version: $Name: $ $Revision: 1.51 $ Author(s): Andreas Huggel (ahu) History: 26-Jan-04, ahu: created 11-Feb-04, ahu: isolated as a component */ // ***************************************************************************** #include "rcsid.hpp" -EXIV2_RCSID("@(#) $Name: $ $Revision: 1.50 $ $RCSfile: exif.cpp,v $") +EXIV2_RCSID("@(#) $Name: $ $Revision: 1.51 $ $RCSfile: exif.cpp,v $") // Define DEBUG_MAKERNOTE to output debug information to std::cerr #undef DEBUG_MAKERNOTE @@ -773,7 +773,7 @@ namespace Exiv2 { long ifd1Offset = gpsIfdOffset + gpsIfd.size() + gpsIfd.dataSize(); // build IFD1 from updated metadata if there is a thumbnail - Ifd ifd1(ifd1, ifd1Offset); + Ifd ifd1(Exiv2::ifd1, ifd1Offset); if (pThumbnail_) { // Update Exif data from thumbnail pThumbnail_->update(*this);