Skip to content

Commit

Permalink
Use correct sized index variables for 32bit systems
Browse files Browse the repository at this point in the history
  • Loading branch information
kdm9 committed Dec 21, 2015
1 parent e47ad4c commit 5779b83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/axe.c
Original file line number Diff line number Diff line change
Expand Up @@ -1371,7 +1371,7 @@ hamming_mutate_dna(size_t *n_results_o, const char *str, size_t len,
size_t results = 0;
size_t results_alloced = 64;
size_t iii;
uint64_t *alphabet_indicies;
uintptr_t *alphabet_indicies;
int alpha_ret = 0;
gsl_combination *mut_idx_comb;

Expand Down

0 comments on commit 5779b83

Please sign in to comment.