aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-05-14 07:49:17 +0200
committerLuke Dashjr <luke-jr+git@utopios.org>2012-05-20 19:54:14 +0000
commit334668cde4e63d08165aa95737cc95a00fbd252b (patch)
treea27f8056409347c515511c20fe83efc3dd56c4db /src/main.cpp
parent738592a002003246849e4b3102aebdab738e976a (diff)
downloadbitcoin-334668cde4e63d08165aa95737cc95a00fbd252b.tar.xz
remove 2 ugly spaces from a message string
(PARTIAL of 966ae00)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index abacbe5e63..510aca92b4 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1637,7 +1637,7 @@ bool CheckDiskSpace(uint64 nAdditionalBytes)
if (nFreeBytesAvailable < (uint64)15000000 + nAdditionalBytes)
{
fShutdown = true;
- string strMessage = _("Warning: Disk space is low ");
+ string strMessage = _("Warning: Disk space is low");
strMiscWarning = strMessage;
printf("*** %s\n", strMessage.c_str());
ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION);