diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-11-04 23:34:57 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-11-04 23:34:57 -0800 |
| commit | 86406daeca0390b13457cc4f8d5f24fa5bf54557 (patch) | |
| tree | 76f5a2899688b84bbd348f91bbad0118a4e0b3ed /src/init.cpp | |
| parent | Merge pull request #1971 from sipa/bugfix_norelayspent (diff) | |
| parent | fix some double-spaces in strings (diff) | |
| download | discoin-86406daeca0390b13457cc4f8d5f24fa5bf54557.tar.xz discoin-86406daeca0390b13457cc4f8d5f24fa5bf54557.zip | |
Merge pull request #1830 from Diapolo/trans_rem_spaces
fix some double-spaces in strings
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 1724382bf..db5ae5a75 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -461,7 +461,7 @@ bool AppInit2() if (file) fclose(file); static boost::interprocess::file_lock lock(pathLockFile.string().c_str()); if (!lock.try_lock()) - return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Bitcoin is probably already running."), strDataDir.c_str())); + return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Bitcoin is probably already running."), strDataDir.c_str())); #if !defined(WIN32) && !defined(QT_GUI) if (fDaemon) |