1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-10 23:08:07 +00:00

Fix signedness warning.

This commit is contained in:
Con Kolivas 2012-07-04 15:22:05 +10:00
parent 6b11d4e4cc
commit 93a7967ecb

View File

@ -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;
}