embryo: remove simple -Wshadow errors. Dangerous/uncertain left.
authorGustavo Sverzut Barbieri <barbieri@gmail.com>
Sun, 13 Jan 2013 23:54:21 +0000 (23:54 +0000)
committerGustavo Sverzut Barbieri <barbieri@gmail.com>
Sun, 13 Jan 2013 23:54:21 +0000 (23:54 +0000)
commit62bca66249c381c39f8d649dcfc1a9ff902c6201
tree3c3f9dbee30eb71a899119d8f4a2e8baf497cd2a
parent0099729e096326ada2e3927cca5fe2bbfa5f8195
embryo: remove simple -Wshadow errors. Dangerous/uncertain left.

The follow are left:
{{{
bin/embryo/embryo_cc_sc1.c: In function ‘dowhile’:
bin/embryo/embryo_cc_sc1.c:3524:24: warning: declaration of ‘wq’ shadows a global declaration [-Wshadow]
bin/embryo/embryo_cc_sc1.c:115:21: warning: shadowed declaration is here [-Wshadow]
bin/embryo/embryo_cc_sc1.c: In function ‘dodo’:
bin/embryo/embryo_cc_sc1.c:3546:24: warning: declaration of ‘wq’ shadows a global declaration [-Wshadow]
bin/embryo/embryo_cc_sc1.c:115:21: warning: shadowed declaration is here [-Wshadow]
bin/embryo/embryo_cc_sc1.c: In function ‘dofor’:
bin/embryo/embryo_cc_sc1.c:3565:24: warning: declaration of ‘wq’ shadows a global declaration [-Wshadow]
bin/embryo/embryo_cc_sc1.c:115:21: warning: shadowed declaration is here [-Wshadow]
}}}

looking at their code, they say to alloc a local "wq", but then they
call functions such as delwhile() that changes the global... VERY suspicious!!

SVN revision: 82734
src/bin/embryo/embryo_cc_sc1.c
src/bin/embryo/embryo_cc_sc2.c
src/bin/embryo/embryo_cc_sc3.c
src/bin/embryo/embryo_cc_sc4.c
src/bin/embryo/embryo_cc_sc7.c