diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-11-16 12:28:54 +0100 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-11-16 12:28:54 +0100 |
commit | 157dd16574c04cb78b704bd809c8919527bd7b61 (patch) | |
tree | f63ed5aff6ddeefbfcd6c828b9688008e4017893 /xmrstak/backend/amd | |
parent | d0b99bb4c69565b2a53f783f88314a1a1955e999 (diff) | |
download | xmr-stak-157dd16574c04cb78b704bd809c8919527bd7b61.zip xmr-stak-157dd16574c04cb78b704bd809c8919527bd7b61.tar.gz |
fix wrong indentions by hand after auto conversion
Diffstat (limited to 'xmrstak/backend/amd')
-rw-r--r-- | xmrstak/backend/amd/minethd.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/xmrstak/backend/amd/minethd.cpp b/xmrstak/backend/amd/minethd.cpp index 07c60eb..1582872 100644 --- a/xmrstak/backend/amd/minethd.cpp +++ b/xmrstak/backend/amd/minethd.cpp @@ -195,9 +195,10 @@ 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*/ + /* 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 + */ while (globalStates::inst().iGlobalJobNo.load(std::memory_order_relaxed) == iJobNo) std::this_thread::sleep_for(std::chrono::milliseconds(100)); |