remove 2 ugly spaces from a message string
authorPhilip Kaufmann <phil.kaufmann@t-online.de>
Mon, 14 May 2012 05:49:17 +0000 (07:49 +0200)
committerLuke Dashjr <luke-jr+git@utopios.org>
Sun, 20 May 2012 19:54:14 +0000 (19:54 +0000)
(PARTIAL of 966ae00)

src/main.cpp

index abacbe5..510aca9 100644 (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);