Browse Source

Fix warnings.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
be5a20c8d6
  1. 4
      driver-avalon.c

4
driver-avalon.c

@ -289,14 +289,14 @@ static bool avalon_decode_nonce(struct thr_info *thr, struct avalon_result *ar, @@ -289,14 +289,14 @@ static bool avalon_decode_nonce(struct thr_info *thr, struct avalon_result *ar,
{
struct cgpu_info *avalon;
struct avalon_info *info;
int avalon_get_work_count;
struct work *work;
avalon = thr->cgpu;
if (unlikely(!avalon->works))
return false;
work = find_queued_work_bymidstate(avalon, ar->midstate, 32, ar->data, 64, 12);
work = find_queued_work_bymidstate(avalon, (char *)ar->midstate, 32,
(char *)ar->data, 64, 12);
if (!work)
return false;

Loading…
Cancel
Save