diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2022-02-27 16:53:22 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2022-02-27 16:53:22 +0100 |
| commit | 7de88d1bcd420447023b8e74b0aa4f5e8ba1df6b (patch) | |
| tree | 71458dbc99241c9d56744508996d68099bf01936 /src/steps.c | |
| parent | 48cd8b6b1779f34ba0507cb697492de83c4e9da8 (diff) | |
| download | nissy-7de88d1bcd420447023b8e74b0aa4f5e8ba1df6b.tar.gz nissy-7de88d1bcd420447023b8e74b0aa4f5e8ba1df6b.zip | |
Removed array-size constants for certain objects (steps, commands...)
Diffstat (limited to '')
| -rw-r--r-- | src/steps.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/steps.c b/src/steps.c index 5de3206..83d105c 100644 --- a/src/steps.c +++ b/src/steps.c | |||
| @@ -929,7 +929,7 @@ htrfin_htr = { | |||
| 929 | .ntables = 1, | 929 | .ntables = 1, |
| 930 | }; | 930 | }; |
| 931 | 931 | ||
| 932 | Step *steps[NSTEPS] = { | 932 | Step *steps[] = { |
| 933 | &optimal_HTM, /* first is default */ | 933 | &optimal_HTM, /* first is default */ |
| 934 | &optimal_light_HTM, | 934 | &optimal_light_HTM, |
| 935 | 935 | ||
| @@ -985,6 +985,8 @@ Step *steps[NSTEPS] = { | |||
| 985 | &cornershtr_URF, | 985 | &cornershtr_URF, |
| 986 | &corners_HTM, | 986 | &corners_HTM, |
| 987 | &corners_URF, | 987 | &corners_URF, |
| 988 | |||
| 989 | NULL | ||
| 988 | }; | 990 | }; |
| 989 | 991 | ||
| 990 | /* Checkers, estimators and validators ***************************************/ | 992 | /* Checkers, estimators and validators ***************************************/ |
