updated version info to new hexa format

This commit is contained in:
csoler 2015-08-02 19:10:59 +02:00
parent 2b8eafa1db
commit 9e978e1442
3 changed files with 14 additions and 14 deletions

View file

@ -12,7 +12,7 @@
std::string RsUtil::retroshareVersion()
{
std::string version;
rs_sprintf(version, "%d.%d.%d%s Revision %d", RS_MAJOR_VERSION, RS_MINOR_VERSION, RS_BUILD_NUMBER, RS_BUILD_NUMBER_ADD, RS_REVISION_NUMBER);
rs_sprintf(version, "%d.%d.%d%s Revision %08x", RS_MAJOR_VERSION, RS_MINOR_VERSION, RS_BUILD_NUMBER, RS_BUILD_NUMBER_ADD, RS_REVISION_NUMBER);
return version;
}