CHG: remove more compiler warnings on UBUNTU14.04

by::  string.format specifier lx -> "llx"
   by::  adding -mmmx parameter to gcc in makefile.  Thanks to @rbubba1911
This commit is contained in:
iceman1001
2016-04-20 15:37:15 +02:00
parent 69687aafb7
commit df9dfce16a
2 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ void* crack_states_thread(void* x){
for(j = thread_id; space[j * 5]; j += thread_count) {
const uint64_t key = crack_states_bitsliced(space + j * 5);
if(key != -1){
printf("Found key: %012lx\n", key);
printf("Found key: %012"llx"\n", key);
__sync_fetch_and_add(&keys_found, 1);
break;
} else if(keys_found){