From: Øyvind Harboe Date: Tue, 15 Jun 2010 21:24:47 +0000 (+0200) Subject: mips32: -Wshadow warning fixes X-Git-Tag: v0.5.0-rc1~615 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=43a9282203d5fc0cf9086a18590c8ff89184b320;p=openocd mips32: -Wshadow warning fixes Signed-off-by: Øyvind Harboe --- diff --git a/src/target/mips32.c b/src/target/mips32.c index 0923a792..2547b011 100644 --- a/src/target/mips32.c +++ b/src/target/mips32.c @@ -388,7 +388,7 @@ int mips32_run_algorithm(struct target *target, int num_mem_params, } /* refresh core register cache */ - for (unsigned i = 0; i < MIPS32NUMCOREREGS; i++) + for (i = 0; i < MIPS32NUMCOREREGS; i++) { if (!mips32->core_cache->reg_list[i].valid) mips32->read_core_reg(target, i); @@ -404,7 +404,7 @@ int mips32_run_algorithm(struct target *target, int num_mem_params, } } - for (int i = 0; i < num_reg_params; i++) + for (i = 0; i < num_reg_params; i++) { struct reg *reg = register_get_by_name(mips32->core_cache, reg_params[i].reg_name, 0);