mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
compiler warning fix
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
parent
6830519167
commit
0ceffd10b5
1 changed files with 1 additions and 1 deletions
2
src/3rdparty/javascriptcore/wtf/dtoa.cpp
vendored
2
src/3rdparty/javascriptcore/wtf/dtoa.cpp
vendored
|
@ -438,7 +438,7 @@ static int lo0bits (uint32_t* y)
|
|||
if (!(x & 1)) {
|
||||
k++;
|
||||
x >>= 1;
|
||||
if (!x & 1)
|
||||
if (!(x & 1))
|
||||
return 32;
|
||||
}
|
||||
*y = x;
|
||||
|
|
Loading…
Add table
Reference in a new issue