From 252b98e0f7bc7aeb8289264eaff5662145527be3 Mon Sep 17 00:00:00 2001 From: Maxim Prokhorov Date: Thu, 14 Jan 2021 17:21:25 +0300 Subject: [PATCH] utils: make version string parsable by semver utils --- code/espurna/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/espurna/utils.cpp b/code/espurna/utils.cpp index 75143a7c..e047faf6 100644 --- a/code/espurna/utils.cpp +++ b/code/espurna/utils.cpp @@ -108,7 +108,7 @@ const String& getCoreRevision() { const String& getVersion() { #if defined(APP_REVISION) - static const String value(F(APP_VERSION " (" APP_REVISION ")")); + static const String value(F(APP_VERSION APP_REVISION)); #else static const String value(F(APP_VERSION)); #endif