Skip to content

Commit 280fb4d

Browse files
committed
py/emitbc: Remove stray semicolon in outer scope.
1 parent 89f657f commit 280fb4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/emitbc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ void mp_emit_bc_load_const_obj(emit_t *emit, mp_obj_t obj) {
550550
void mp_emit_bc_load_null(emit_t *emit) {
551551
emit_bc_pre(emit, 1);
552552
emit_write_bytecode_byte(emit, MP_BC_LOAD_NULL);
553-
};
553+
}
554554

555555
void mp_emit_bc_load_fast(emit_t *emit, qstr qst, mp_uint_t local_num) {
556556
(void)qst;

0 commit comments

Comments
 (0)