remove 2 ugly spaces from a message string

(PARTIAL of 966ae00)
This commit is contained in:
Philip Kaufmann
2012-05-14 07:49:17 +02:00
committed by Luke Dashjr
parent 738592a002
commit 334668cde4

View File

@@ -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);