mirror of
https://github.com/cryb-to/cryb-to.git
synced 2024-12-18 02:24:54 +00:00
Add a missing break.
This was harmless as it would either fall through to an empty default statement (if CRYB_COVERAGE was defined) or out of the switch, but it's still bad style.
This commit is contained in:
parent
2e5134e217
commit
06c2f1280a
1 changed files with 1 additions and 0 deletions
|
@ -70,6 +70,7 @@ mpi_load(cryb_mpi *X, const uint8_t *a, size_t len)
|
|||
break;
|
||||
case 0:
|
||||
--i;
|
||||
break;
|
||||
CRYB_NO_DEFAULT_CASE;
|
||||
}
|
||||
X->msb = i * 32 + flsl(X->words[i]);
|
||||
|
|
Loading…
Reference in a new issue