#774. Fix MSVC compiler warning.

This commit is contained in:
Robin Mills 2015-04-10 17:48:24 +00:00
parent 37d04436bf
commit be1649e1ee

View File

@ -48,7 +48,7 @@ EXIV2_RCSID("@(#) $Id$")
// *****************************************************************************
namespace {
const char* xmlHeader = "<?xpacket begin=\"\xef\xbb\xbf\" id=\"W5M0MpCehiHzreSzNTczkc9d\"?>\n";
const long xmlHdrCnt = std::strlen(xmlHeader); // without the trailing 0-character
const long xmlHdrCnt = (long) std::strlen(xmlHeader); // without the trailing 0-character
const char* xmlFooter = "<?xpacket end=\"w\"?>";
}