diff options
author | jon <jonrevold@gmail.com> | 2020-04-08 19:40:18 +0200 |
---|---|---|
committer | jon <jonrevold@gmail.com> | 2020-04-08 19:40:18 +0200 |
commit | 9110b7983b698e543247a20854a682462141aaf7 (patch) | |
tree | 12abda7b4ec1ef00de67cc5670f66f0e2a251d18 | |
parent | 640b35017ec14088fe6b0ce212fcbd967a572a7f (diff) | |
download | ct_sequence-9110b7983b698e543247a20854a682462141aaf7.tar.gz |
opps
-rw-r--r-- | src/a5.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,7 +8,7 @@ void a5_init(uint64_t n); void a5_loop(uint64_t x0,uint64_t x1); algo_t a5 = { - .name = "a5 (bassed on NT5 tek)", + .name = "a5 (NT5 tek)", .nmax = 1ULL<<32, .init = a5_init, .loop = a5_loop, @@ -27,7 +27,7 @@ void a5_init(uint64_t n){ index_size = (n-1)/8+1; lastp_size = n*sizeof(uint32_t); index = calloc(index_size,1); - lastp = malloc(lastp_size); + lastp = calloc(lastp_size,1); } void a5_loop(uint64_t x0,uint64_t x1){ |