aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2011-06-14 04:50:51 -0400
committerJeff Garzik <jgarzik@pobox.com>2011-06-14 04:50:51 -0400
commitc02ec542691baff7517a10ab99bec0cead3ad3ee (patch)
tree51128afc80c07605bc21120c2007494f862b9d6a /src
parent6f460bace604361d3b2306f3f1e81198301c063a (diff)
downloadbitcoin-c02ec542691baff7517a10ab99bec0cead3ad3ee.tar.xz
FormatFullVersion: build fix related to recent translation improvement
Diffstat (limited to 'src')
-rw-r--r--src/util.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 5220cdcd2b..8d839e1cab 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -895,8 +895,10 @@ string FormatVersion(int nVersion)
string FormatFullVersion()
{
string s = FormatVersion(VERSION) + pszSubVer;
- if (VERSION_IS_BETA)
- s += "-" + _("beta");
+ if (VERSION_IS_BETA) {
+ s += "-";
+ s += _("beta");
+ }
return s;
}