Re: [Openocd-development] [PATCH 06/10] change argv to args in command handlers

2009-11-11 Thread Zach Welch
On Wed, 2009-11-11 at 11:54 -0700, David Brownell wrote: > On Wednesday 11 November 2009, Zachary T Welch wrote: > > Subsequent patches expect all command handlers to use a uniform > > parameter naming scheme. In the entire tree, these two files used > > non-standard 'argv' instead of 'args'. Thi

Re: [Openocd-development] [PATCH 06/10] change argv to args in command handlers

2009-11-11 Thread David Brownell
On Wednesday 11 November 2009, Zachary T Welch wrote: > Subsequent patches expect all command handlers to use a uniform > parameter naming scheme.  In the entire tree, these two files used > non-standard 'argv' instead of 'args'.  This patch reduces noise > required to unify all command handlers wi

[Openocd-development] [PATCH 06/10] change argv to args in command handlers

2009-11-11 Thread Zachary T Welch
Subsequent patches expect all command handlers to use a uniform parameter naming scheme. In the entire tree, these two files used non-standard 'argv' instead of 'args'. This patch reduces noise required to unify all command handlers with a single definition. Signed-off-by: Zachary T Welch ---