diff options
Diffstat (limited to 'src/move.c')
-rw-r--r-- | src/move.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -270,8 +270,8 @@ static int mvcheck_proc(struct state *state, struct ast *node) static int total_check_single(struct state *state, struct scope *scope) { int ret = 0; - foreach_visible(n, scope->symbols) { - struct ast *def = n->node; + foreach(visible, n, &scope->symbols) { + struct ast *def = n->data; if (def->k != AST_VAR_DEF) continue; |