diff options
| author | Philip Kaufmann <[email protected]> | 2012-05-14 07:49:17 +0200 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-05-20 19:54:14 +0000 |
| commit | 334668cde4e63d08165aa95737cc95a00fbd252b (patch) | |
| tree | a27f8056409347c515511c20fe83efc3dd56c4db /src/main.cpp | |
| parent | Always check return values of TxnBegin() and TxnCommit() (diff) | |
| download | discoin-334668cde4e63d08165aa95737cc95a00fbd252b.tar.xz discoin-334668cde4e63d08165aa95737cc95a00fbd252b.zip | |
remove 2 ugly spaces from a message string
(PARTIAL of 966ae00)
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index abacbe5e6..510aca92b 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); |