aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-01-18 15:07:05 +0100
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-02-20 08:46:38 +0100
commit69e077471434b4eb34ec4574c47f83956c51fa63 (patch)
tree83df1009cd502dbae2161a71c2575749ef183938 /src/init.cpp
parent44d7f4cbebd446f8f4a48ff9048d4549c0e2448a (diff)
downloadbitcoin-69e077471434b4eb34ec4574c47f83956c51fa63.tar.xz
small changes in init, main, checkpoints.h and bitcoin-qt.pro
- remove an unneeded MODAL flag, as MSG_ERROR sets MODAL - re-order an if-clause in main to have bool checks before a function call - fix some log messages that used wrong function names - make a log message use a correct ellipsis - remove some unneded spaces, brackets and line-breaks - fix style for adding files in the Qt project
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 99e89d9edc..cf49831b6b 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -497,7 +497,7 @@ bool AppInit2()
nScriptCheckThreads = GetArg("-par", 0);
if (nScriptCheckThreads == 0)
nScriptCheckThreads = boost::thread::hardware_concurrency();
- if (nScriptCheckThreads <= 1)
+ if (nScriptCheckThreads <= 1)
nScriptCheckThreads = 0;
else if (nScriptCheckThreads > MAX_SCRIPTCHECK_THREADS)
nScriptCheckThreads = MAX_SCRIPTCHECK_THREADS;