Skip to content
Snippets Groups Projects
Commit 9880c4cd authored by Timothy B. Terriberry's avatar Timothy B. Terriberry
Browse files

Fix bustage in a16cef62.

parent 41ce6e35
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ static inline opus_int32 silk_CLZ16(opus_int16 in16)
static inline opus_int32 silk_CLZ32(opus_int32 in32)
{
return in32 ? 32 - EC_ILOG(in32) : 0;
return in32 ? 32 - EC_ILOG(in32) : 32;
}
/* Row based */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment