From c02ec542691baff7517a10ab99bec0cead3ad3ee Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Tue, 14 Jun 2011 04:50:51 -0400 Subject: [PATCH] FormatFullVersion: build fix related to recent translation improvement --- src/util.cpp | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/util.cpp b/src/util.cpp index 5220cdc..8d839e1 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; } -- 1.7.1