py/bc.h: Rename _mp_code_state to _mp_code_state_t.

This rename was missed in the previous patch.
This commit is contained in:
Damien George 2016-08-27 23:23:51 +10:00
parent 581a59a456
commit f4ee9f8853

View File

@ -78,7 +78,7 @@ typedef struct _mp_code_state_t {
mp_exc_stack_t *exc_sp; mp_exc_stack_t *exc_sp;
mp_obj_dict_t *old_globals; mp_obj_dict_t *old_globals;
#if MICROPY_STACKLESS #if MICROPY_STACKLESS
struct _mp_code_state *prev; struct _mp_code_state_t *prev;
#endif #endif
size_t n_state; size_t n_state;
// Variable-length // Variable-length