diff options
author | Damien George <damien.p.george@gmail.com> | 2016-08-27 23:23:51 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-08-27 23:23:51 +1000 |
commit | f4ee9f88539e64a88bd837c5877354f6b7141119 (patch) | |
tree | 98ab77151066befedce6468257e36f7d806537e6 /py | |
parent | 581a59a456654e881a228a99f135777e0335f1e1 (diff) | |
download | micropython-f4ee9f88539e64a88bd837c5877354f6b7141119.tar.gz micropython-f4ee9f88539e64a88bd837c5877354f6b7141119.zip |
py/bc.h: Rename _mp_code_state to _mp_code_state_t.
This rename was missed in the previous patch.
Diffstat (limited to 'py')
-rw-r--r-- | py/bc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ typedef struct _mp_code_state_t { mp_exc_stack_t *exc_sp; mp_obj_dict_t *old_globals; #if MICROPY_STACKLESS - struct _mp_code_state *prev; + struct _mp_code_state_t *prev; #endif size_t n_state; // Variable-length |