Re: [PATCH v2 03/94] builtin/apply: avoid parameter shadowing 'linenr' global
From: Junio C Hamano <hidden> Date: 2016-06-16 02:19:21
Christian Couder [off-list ref] writes:
Let's just rename the global 'state_linenr' as it will become
'state->linenr' in a following patch.
This also avoid errors when compiling with -Wshadow and makes
it safer to later move global variables into a "state" struct.
Looks correctly done (I looked at remaining instances of "linenr").
Will queue. Thanks.