Browse Source

fix compiler warning and indentation

djm34
Jan Berdajs 11 years ago
parent
commit
77c996858b
  1. 8
      sgminer.c

8
sgminer.c

@ -4238,12 +4238,12 @@ static bool test_work_current(struct work *work)
if (work->longpoll) { if (work->longpoll) {
work->work_block = ++work_block; work->work_block = ++work_block;
if (shared_strategy() || work->pool == current_pool()) { if (shared_strategy() || work->pool == current_pool()) {
if(opt_morenotices) if(opt_morenotices) {
if (work->stratum) { if (work->stratum)
applog(LOG_NOTICE, "Stratum from %s requested work restart", get_pool_name(pool)); applog(LOG_NOTICE, "Stratum from %s requested work restart", get_pool_name(pool));
} else { else
applog(LOG_NOTICE, "%sLONGPOLL from %s requested work restart", work->gbt ? "GBT " : "", get_pool_name(pool)); applog(LOG_NOTICE, "%sLONGPOLL from %s requested work restart", work->gbt ? "GBT " : "", get_pool_name(pool));
} }
restart_threads(); restart_threads();
} }
} }

Loading…
Cancel
Save