]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/cmdhfmfhard.c
CHG: some debug statements instead, 'H' for helptext.
[proxmark3-svn] / client / cmdhfmfhard.c
index d33812148eee4dadd02cde202e397abe0ca7b059..a55a9e9f4b9b6bd121fef0e8fb52bd983dfe65a2 100644 (file)
@@ -1474,7 +1474,7 @@ static const uint64_t crack_states_bitsliced(statelist_t *p){
         const bitslice_value_t odd_feedback = odd_feedback_bit ? bs_ones.value : bs_zeroes.value;
 
         for(size_t block_idx = 0; block_idx < bitsliced_blocks; ++block_idx){
-            const bitslice_t const * restrict bitsliced_even_state = bitsliced_even_states[block_idx];
+            const bitslice_t * const restrict bitsliced_even_state = bitsliced_even_states[block_idx];
             size_t state_idx;
             // set even bits
             for(state_idx = 0; state_idx < STATE_SIZE-ROLLBACK_SIZE; state_idx+=2){
@@ -1687,12 +1687,12 @@ static void brute_force(void)
 
         time(&end);            
         double elapsed_time = difftime(end, start);
-               PrintAndLog("");
+
         if(keys_found){
-                       PrintAndLog("Success! Tested %"PRIu64" states, found %u keys after %.f seconds", total_states_tested, keys_found, elapsed_time);
+                       PrintAndLog("Success! Tested %"PRIu32" states, found %u keys after %.f seconds", total_states_tested, keys_found, elapsed_time);
                        PrintAndLog("\nFound key: %012"PRIx64"\n", foundkey);
         } else {
-                       PrintAndLog("Fail! Tested %"PRIu64" states, in %.f seconds", total_states_tested, elapsed_time);
+                       PrintAndLog("Fail! Tested %"PRIu32" states, in %.f seconds", total_states_tested, elapsed_time);
                }
         // reset this counter for the next call
         nonces_to_bruteforce = 0;
Impressum, Datenschutz