Commit aa35fbcc9afbae8921b369fcc2376a93a6f47a78

Con Kolivas 2012-10-07T10:21:20

Fix sign warning in ocl.c

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/miner.h b/miner.h
index b2715d4..b53d278 100644
--- a/miner.h
+++ b/miner.h
@@ -379,7 +379,7 @@ struct cgpu_info {
 #ifdef USE_SCRYPT
 	int opt_lg, lookup_gap;
 	size_t opt_tc, thread_concurrency;
-	int shaders;
+	size_t shaders;
 #endif
 	struct timeval tv_gpustart;
 	struct timeval tv_gpumid;