Use toString() instead of value() to write to std::cout. https://github.com/Exiv2/exiv2/issues/901#issuecomment-627872855

This commit is contained in:
clanmills
2020-05-13 10:46:15 +01:00
parent d8c29c4cba
commit e15c483e29
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ int main(int argc, char** argv)
<< std::dec << std::setw(3)
<< std::setfill(' ') << std::right
<< md->count() << " "
<< std::dec << md->value()
<< std::dec << md->toString()
<< std::endl;
}