Skip to content

Commit

Permalink
axiom: warning fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tpruvot committed Aug 7, 2015
1 parent 68ca886 commit 84d964c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion algo/axiom.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <stdio.h>
#include <inttypes.h>
#include <unistd.h>
#include <string.h>

#include <miner.h>

Expand All @@ -12,7 +13,7 @@

typedef mshabal_u32 hash_t[8];

#ifdef __x86_64__
#if defined(__x86_64__) && !defined(__8WAY__)
static void axiomhash4way(mshabal_context* ctx_org, void* memspace, const void *input1, void *result1,
const void *input2, void *result2, const void *input3, void *result3, const void *input4, void *result4)
{
Expand Down

0 comments on commit 84d964c

Please sign in to comment.