Browse Source

Intensity is signed integer, fix its display.

Con Kolivas 14 years ago
parent
commit
648c6b7c7c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main.c

+ 1 - 1
main.c

@@ -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)