From 93a7967ecbdf69024d22acaa9efa7ba98447dbfb Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Wed, 4 Jul 2012 15:22:05 +1000 Subject: [PATCH] Fix signedness warning. --- driver-bitforce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver-bitforce.c b/driver-bitforce.c index 27494c46..7d51ce39 100644 --- a/driver-bitforce.c +++ b/driver-bitforce.c @@ -450,7 +450,7 @@ static struct api_data *bitforce_api_stats(struct cgpu_info *cgpu) // care since hashing performance is way more important than // locking access to displaying API debug 'stats' // If locking becomes an issue for any of them, use copy_data=true also - root = api_add_int(root, "Sleep Time", &(cgpu->sleep_ms), false); + root = api_add_uint(root, "Sleep Time", &(cgpu->sleep_ms), false); return root; }