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:
Dag-Erling Smørgrav 2017-09-04 21:00:01 +02:00
parent 2e5134e217
commit 06c2f1280a

View file

@ -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]);