diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2026-04-06 14:48:54 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2026-04-06 14:48:54 +0100 |
| commit | a1ad0db8a6d829eddf1478cee44ae976bbcd325f (patch) | |
| tree | a6e62232e05e7779034c5f9d1bf743b6f1c198e3 /src/nissy.c | |
| parent | 0d4fa9ebbfcadfff4baf8fc3cd32a63dcfd7dd43 (diff) | |
| download | nissy-core-c-portability.tar.gz nissy-core-c-portability.zip | |
Fix integer conversions in code, tests and some toolsc-portability
Diffstat (limited to 'src/nissy.c')
| -rw-r--r-- | src/nissy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nissy.c b/src/nissy.c index b9f2565..0811861 100644 --- a/src/nissy.c +++ b/src/nissy.c | |||
| @@ -197,7 +197,7 @@ nissy_getcube( | |||
| 197 | getcube_options[i].fix(&ep, &eo, &cp, &co, &orient); | 197 | getcube_options[i].fix(&ep, &eo, &cp, &co, &orient); |
| 198 | 198 | ||
| 199 | oc.cube = getcube(ep, eo, cp, co); | 199 | oc.cube = getcube(ep, eo, cp, co); |
| 200 | oc.orientation = orient; | 200 | oc.orientation = (uint8_t)orient; |
| 201 | 201 | ||
| 202 | if (!isconsistent(oc)) { | 202 | if (!isconsistent(oc)) { |
| 203 | LOG("[getcube] Error: could not get cube with ep=%lld, " | 203 | LOG("[getcube] Error: could not get cube with ep=%lld, " |
