chore: fix

This commit is contained in:
kailixu 2023-05-05 20:42:49 +08:00
parent 0c3dc0867f
commit 4ae9eab90e
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@ static int32_t smlFindNearestPowerOf2(int32_t length, uint8_t type) {
result = length;
}else{
while (result <= length) {
result << 1;
result <<= 1;
}
}