On 01/09/2013 01:02 PM, julianf...@apache.org wrote:
Author: julianfoad
Date: Wed Jan 9 21:02:33 2013
New Revision: 1431072
URL: http://svn.apache.org/viewvc?rev=1431072&view=rev
Log:
Consistify a few remaining redundant or odd expressions involving boolean
constants, such as "foo == FALSE" to "!foo" and "number ? FALSE : TRUE" to
"number != 0". A follow-up to r1431017 and r1431040.
The commit is good and so is the comment on replay.c, but this should
read "number ? TRUE : FALSE" to be correct and match the code.
Blair