diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-11-16 12:21:38 +0100 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-11-16 12:21:38 +0100 |
commit | d0b99bb4c69565b2a53f783f88314a1a1955e999 (patch) | |
tree | 6ef9b5be97ee0171af88c16886b5c34766e0521e /xmrstak/backend/cpu/minethd.cpp | |
parent | 1dc874c542a23c36dd65ea0f5b9cb65e3c3a572a (diff) | |
download | xmr-stak-d0b99bb4c69565b2a53f783f88314a1a1955e999.zip xmr-stak-d0b99bb4c69565b2a53f783f88314a1a1955e999.tar.gz |
remove space indention with tabs
- removed all space indention in `*.hpp` and `*.cpp` files
Diffstat (limited to 'xmrstak/backend/cpu/minethd.cpp')
-rw-r--r-- | xmrstak/backend/cpu/minethd.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmrstak/backend/cpu/minethd.cpp b/xmrstak/backend/cpu/minethd.cpp index 03071c4..9529058 100644 --- a/xmrstak/backend/cpu/minethd.cpp +++ b/xmrstak/backend/cpu/minethd.cpp @@ -234,7 +234,7 @@ bool minethd::self_test() if(!bResult) printer::inst()->print_msg(L0, - "Cryptonight hash self-test failed. This might be caused by bad compiler optimizations."); + "Cryptonight hash self-test failed. This might be caused by bad compiler optimizations."); return bResult; } @@ -365,8 +365,8 @@ void minethd::work_main() if (oWork.bStall) { /* We are stalled here because the executor didn't find a job for us yet, - either because of network latency, or a socket problem. Since we are - raison d'etre of this software it us sensible to just wait until we have something*/ + either because of network latency, or a socket problem. Since we are + raison d'etre of this software it us sensible to just wait until we have something*/ while (globalStates::inst().iGlobalJobNo.load(std::memory_order_relaxed) == iJobNo) std::this_thread::sleep_for(std::chrono::milliseconds(100)); |