diff options
Diffstat (limited to 'src/exhaustive/nums.c')
| -rw-r--r-- | src/exhaustive/nums.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/exhaustive/nums.c b/src/exhaustive/nums.c index 7e41938..1d3ae2a 100644 --- a/src/exhaustive/nums.c +++ b/src/exhaustive/nums.c @@ -22,7 +22,7 @@ GENERATOR(nums_gen_field) { } GENERATOR(nums_gen_a) { - curve-> a = gmodulo(stoi(-3), curve->field); + curve->a = gmodulo(stoi(-3), curve->field); return 1; } @@ -103,9 +103,8 @@ GENERATOR(nums_gen_gens) { return 1; } - void nums_quit(void) { if (b && isclone(b)) { gunclone(b); } -}
\ No newline at end of file +} |
