Browse Source

use name[len] in switch directly, instead of creating a shadowed variable.

builtin-apply.c defines a local variable 'c' which is used only
once and then later gets shadowed by another instance of 'c'.

Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Pierre Habouzit 19 years ago committed by Junio C Hamano
parent
commit
dd305c8462
  1. 4
      builtin-apply.c

4
builtin-apply.c

@ -606,9 +606,7 @@ static char *git_header_name(char *line, int llen) @@ -606,9 +606,7 @@ static char *git_header_name(char *line, int llen)
* form.
*/
for (len = 0 ; ; len++) {
char c = name[len];

switch (c) {
switch (name[len]) {
default:
continue;
case '\n':

Loading…
Cancel
Save