On 04/09/2010 03:08 PM, s...@apache.org wrote:
Author: stsp Date: Fri Apr 9 22:08:40 2010 New Revision: 932635URL: http://svn.apache.org/viewvc?rev=932635&view=rev Log: * subversion/libsvn_repos/reporter.c (update_entry): Style nit: Replace "if (a) b = TRUE;" with "b = (a);"
- else if (distance != -1 || b->ignore_ancestry) - related = TRUE; + + related = (distance != -1 || b->ignore_ancestry);
Why not then also remove the related = FALSE just above this code as it's redundant.
Blair