From: jundery Date: Thu, 28 Feb 2013 05:18:11 +0000 (-0700) Subject: Remove strange use of the ternary operator X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=0fc9a01933ce33fda3732c1d5bbde5a8908d0019;hp=0fc9a01933ce33fda3732c1d5bbde5a8908d0019;p=stockfish Remove strange use of the ternary operator Note that we read shared data without lock protection, so code is theoretically prone to torn reads. But, first splitPoint pointer never changes, and alpha is of integer type so it is read in a single DWORD access. No functional change. ---