From 4fe011b4691ccef5d40170435565da269c2fcc54 Mon Sep 17 00:00:00 2001 From: XMRig Date: Fri, 3 Jul 2020 21:36:06 +0700 Subject: [PATCH] Fix tab/space inconsistency. --- src/3rdparty/libethash/ethash_internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/3rdparty/libethash/ethash_internal.c b/src/3rdparty/libethash/ethash_internal.c index 586a77fc7..e03996c44 100644 --- a/src/3rdparty/libethash/ethash_internal.c +++ b/src/3rdparty/libethash/ethash_internal.c @@ -187,7 +187,7 @@ void ethash_calculate_dag_item4_opt( ethash_light_t const light ) { - node const* cache_nodes = (node const*)light->cache; + node const* cache_nodes = (node const*)light->cache; for (size_t i = 0; i < 4; ++i) { node const* init = &cache_nodes[fast_mod(node_index + i, light->num_parent_nodes, light->reciprocal, light->increment, light->shift)];