1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-30 16:34:23 +00:00

Intensity is signed integer, fix its display.

This commit is contained in:
Con Kolivas 2011-09-27 14:17:52 +10:00
parent 5a4dabe233
commit 648c6b7c7c

2
main.c
View File

@ -3256,7 +3256,7 @@ retry:
if (gpus[gpu].dynamic)
wlog("Dynamic\n");
else
wlog("%u\n", gpus[gpu].intensity);
wlog("%d\n", gpus[gpu].intensity);
for (i = 0; i < mining_threads; i++) {
thr = &thr_info[i];
if (thr->cgpu != cgpu)