Re: [PATCH 4/6] wt-status: remove unused field in grab_1st_switch_cbdata

2013-06-13 Thread Junio C Hamano
Ramkumar Ramachandra writes: > The struct grab_1st_switch_cbdata has the field "found", which is set in > grab_1st_switch() when a match is found. This information is redundant > and unused by any caller: the return value of the function serves to > communicate this information anyway. Remove t

[PATCH 4/6] wt-status: remove unused field in grab_1st_switch_cbdata

2013-06-13 Thread Ramkumar Ramachandra
The struct grab_1st_switch_cbdata has the field "found", which is set in grab_1st_switch() when a match is found. This information is redundant and unused by any caller: the return value of the function serves to communicate this information anyway. Remove the field. Signed-off-by: Ramkumar Rama