Fix tab/space inconsistency.

This commit is contained in:
XMRig 2020-07-03 21:36:06 +07:00
parent bf32802a82
commit 4fe011b469
No known key found for this signature in database
GPG key ID: 446A53638BE94409

View file

@ -187,7 +187,7 @@ void ethash_calculate_dag_item4_opt(
ethash_light_t const light 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) { 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)]; node const* init = &cache_nodes[fast_mod(node_index + i, light->num_parent_nodes, light->reciprocal, light->increment, light->shift)];