From e2835c16f412c8cd7f51539392b86e1a0e22247f Mon Sep 17 00:00:00 2001 From: Damien George <damien.p.george@gmail.com> Date: Wed, 9 Apr 2014 20:20:34 +0100 Subject: [PATCH] py: Oops, fix emitcpy to compile with latest changes. --- py/emitcpy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/emitcpy.c b/py/emitcpy.c index fe40c4145..8c608d6a2 100644 --- a/py/emitcpy.c +++ b/py/emitcpy.c @@ -230,7 +230,7 @@ STATIC void emit_cpy_load_const_verbatim_str(emit_t *emit, const char *str) { } } -STATIC void emit_cpy_load_fast(emit_t *emit, qstr qstr, int local_num) { +STATIC void emit_cpy_load_fast(emit_t *emit, qstr qstr, uint id_flags, int local_num) { emit_pre(emit, 1, 3); if (emit->pass == PASS_3) { printf("LOAD_FAST %d %s\n", local_num, qstr_str(qstr)); -- GitLab