From e5bcabd026fd6ecb706d50b55af2074c111675ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20D=C3=ADaz=20M=C3=A1s?= Date: Thu, 13 Sep 2018 10:47:11 +0200 Subject: [PATCH] Do not print hexadecimal version value when running exiv2 --version --- src/exiv2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exiv2.cpp b/src/exiv2.cpp index cf84a856..d6d58683 100644 --- a/src/exiv2.cpp +++ b/src/exiv2.cpp @@ -218,7 +218,7 @@ void Params::version(bool verbose,std::ostream& os) const { bool b64 = sizeof(void*)==8; const char* sBuild = b64 ? "(64 bit build)" : "(32 bit build)" ; - os << EXV_PACKAGE_STRING << " " << Exiv2::versionNumberHexString() << " " << sBuild << "\n"; + os << EXV_PACKAGE_STRING << " " << sBuild << "\n"; if ( Params::instance().greps_.empty() ) { os << "\n" << _("This program is free software; you can redistribute it and/or\n"