Kaydet (Commit) df579b1f authored tarafından Julien Nabet's avatar Julien Nabet

Fix "Boolean result is used in bitwise operation"

Change-Id: Ifed0d87da3ac5bd19a0285f1074f2eeec5717f05
üst 3640fdd7
......@@ -94,8 +94,7 @@ void SbiScanner::GenError( SbError code )
}
bRes = pBasic->CError( code, aError, nLine, nc, nCol2 );
}
bAbort |= !bRes |
( code == SbERR_NO_MEMORY || code == SbERR_PROG_TOO_LARGE );
bAbort = bAbort || !bRes || ( code == SbERR_NO_MEMORY || code == SbERR_PROG_TOO_LARGE );
}
if( bErrors )
nErrors++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment