Skip to content
This repository has been archived by the owner on Jul 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #43 from rbrito/master
Browse files Browse the repository at this point in the history
Remove extra parameter from scanhash_asm32.
  • Loading branch information
Jeff Garzik committed Mar 14, 2013
2 parents 99f8cec + a102e10 commit 4d529f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cpu-miner.c
Expand Up @@ -628,7 +628,7 @@ static void *miner_thread(void *userdata)
#ifdef WANT_CRYPTOPP_ASM32
case ALGO_CRYPTOPP_ASM32:
rc = scanhash_asm32(thr_id, work.midstate, work.data + 64,
work.hash1, work.hash, work.target,
work.hash, work.target,
max_nonce, &hashes_done);
break;
#endif
Expand Down
2 changes: 1 addition & 1 deletion miner.h
Expand Up @@ -164,7 +164,7 @@ extern bool scanhash_cryptopp(int, const unsigned char *midstate,unsigned char *
unsigned char *hash, const unsigned char *target,
uint32_t max_nonce, unsigned long *hashes_done);
extern bool scanhash_asm32(int, const unsigned char *midstate,unsigned char *data,
unsigned char *hash1, unsigned char *hash,
unsigned char *hash,
const unsigned char *target,
uint32_t max_nonce, unsigned long *hashes_done);
extern int scanhash_sse2_64(int, const unsigned char *pmidstate, unsigned char *pdata,
Expand Down

0 comments on commit 4d529f1

Please sign in to comment.