diff options
| author | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-12-23 19:01:33 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-12-23 19:01:33 +0100 |
| commit | 4fb970ad4e7d0558f7bf32dbad2333dbf3cb3ab4 (patch) | |
| tree | f8cf70973ed3fb78816e89bd9034c983b68b6062 /src/steps.c | |
| parent | 4dddac9e257433a8e2f5f763d91470a7e05ff680 (diff) | |
| download | nissy-4fb970ad4e7d0558f7bf32dbad2333dbf3cb3ab4.tar.gz nissy-4fb970ad4e7d0558f7bf32dbad2333dbf3cb3ab4.zip | |
Fixes for yesterday's commit
Diffstat (limited to 'src/steps.c')
| -rw-r--r-- | src/steps.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/steps.c b/src/steps.c index 0357e69..2517d16 100644 --- a/src/steps.c +++ b/src/steps.c | |||
| @@ -1497,6 +1497,9 @@ prepare_step(Step *step, SolveOptions *opts) | |||
| 1497 | fprintf(stderr, "Step is final, NISS not used (-n ignored)\n"); | 1497 | fprintf(stderr, "Step is final, NISS not used (-n ignored)\n"); |
| 1498 | } | 1498 | } |
| 1499 | 1499 | ||
| 1500 | for (i = 0; i < step->ntables; i++) | 1500 | for (i = 0; i < step->ntables; i++) { |
| 1501 | genptable(step->tables[i], opts->nthreads); | 1501 | genptable(step->tables[i], opts->nthreads); |
| 1502 | if (step->tables[i]->compact) | ||
| 1503 | genptable(step->tables[i]->fallback, opts->nthreads); | ||
| 1504 | } | ||
| 1502 | } | 1505 | } |
