diff options
| author | Gavin Andresen <[email protected]> | 2013-08-06 04:46:02 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-08-06 04:46:02 -0700 |
| commit | 7b22c8e8ca745a66bbc3867f1bdbc19acf05a67f (patch) | |
| tree | 8c6532cc36504bb52d8cd570dc3266f006f11e98 /src/init.cpp | |
| parent | Merge pull request #2879 from Diapolo/translations (diff) | |
| parent | remove a newline from a string in init.cpp (diff) | |
| download | discoin-7b22c8e8ca745a66bbc3867f1bdbc19acf05a67f.tar.xz discoin-7b22c8e8ca745a66bbc3867f1bdbc19acf05a67f.zip | |
Merge pull request #2881 from Diapolo/translations_rem_newline
remove a newline from a string in init.cpp
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 49d6e1fde..20d334019 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -504,7 +504,7 @@ bool AppInit2(boost::thread_group& threadGroup) // Wallet file must be a plain filename without a directory if (strWalletFile != boost::filesystem::basename(strWalletFile) + boost::filesystem::extension(strWalletFile)) - return InitError(strprintf(_("Wallet %s resides outside data directory %s\n"), strWalletFile.c_str(), strDataDir.c_str())); + return InitError(strprintf(_("Wallet %s resides outside data directory %s"), strWalletFile.c_str(), strDataDir.c_str())); // Make sure only a single Bitcoin process is using the data directory. boost::filesystem::path pathLockFile = GetDataDir() / ".lock"; |