diff options
author | Damien George <damien.p.george@gmail.com> | 2017-09-13 20:36:06 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-09-13 20:36:06 +1000 |
commit | 280fb4d92830bedb1f4ef90554300e444661ef8c (patch) | |
tree | e5726bc6f0203cac04b54d0c2b34ad9d6e520c71 /py | |
parent | 89f657f073d212161a04082419faeca30fc3a410 (diff) |
py/emitbc: Remove stray semicolon in outer scope.
Diffstat (limited to 'py')
-rw-r--r-- | py/emitbc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emitbc.c b/py/emitbc.c index 677020925..3f4dfc178 100644 --- a/py/emitbc.c +++ b/py/emitbc.c @@ -550,7 +550,7 @@ void mp_emit_bc_load_const_obj(emit_t *emit, mp_obj_t obj) { void mp_emit_bc_load_null(emit_t *emit) { emit_bc_pre(emit, 1); emit_write_bytecode_byte(emit, MP_BC_LOAD_NULL); -}; +} void mp_emit_bc_load_fast(emit_t *emit, qstr qst, mp_uint_t local_num) { (void)qst; |