--- old/src/java.desktop/share/native/libfreetype/src/psaux/psfixed.h 2019-11-22 09:36:32.178838721 -0800 +++ new/src/java.desktop/share/native/libfreetype/src/psaux/psfixed.h 2019-11-22 09:36:32.026838726 -0800 @@ -72,8 +72,7 @@ #define cf2_fixedFraction( x ) \ ( (x) - cf2_fixedFloor( x ) ) #define cf2_fracToFixed( x ) \ - ( (x) < 0 ? -( ( -(x) + 0x2000 ) >> 14 ) \ - : ( ( (x) + 0x2000 ) >> 14 ) ) + ( ( (x) + 0x2000 - ( (x) < 0 ) ) >> 14 ) /* signed numeric types */