diff options
author | jonsykkel <jonrevold@gmail.com> | 2020-04-09 17:12:37 +0200 |
---|---|---|
committer | jonsykkel <jonrevold@gmail.com> | 2020-04-09 17:12:37 +0200 |
commit | 06b70d9eed751ecf7a8d41ffec9d1209a315e496 (patch) | |
tree | dd8f57bd123cca403d6926c29bf3b57d83f2aa59 | |
parent | 1ad24e530f1ac01716f04d29f9bf7ddececbc68f (diff) | |
download | ct_sequence-06b70d9eed751ecf7a8d41ffec9d1209a315e496.tar.gz |
a
-rw-r--r-- | src/a5.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ void a5_loop(uint64_t x0,uint64_t x1){ uint64_t index_bit; index_ptr = index+(t/64); - index_bit = 1ULL<<(t%63); + index_bit = 1ULL<<(t%64); if(*index_ptr & index_bit){ next = x-lastp[t]; |