Fix compilation error

This commit is contained in:
Ai Lin Chia
2016-06-21 13:18:40 +02:00
parent f78c43d82a
commit ccffa630f7

@ -1830,7 +1830,7 @@ skip:
// . is the last key we stored negative, a dangling negative?
// . if not, skip this next section
//if ( lastKeyIsValid && (*(char *)&lastKey & 0x01) == 0x01 )
if ( lastKeyIsValid && !KEYNEG(lastKey) )
if ( lastKeyIsValid && !KEYNEG(lastKey) ) {
goto positive;
}