diff options
author | Damien George <damien.p.george@gmail.com> | 2014-09-08 23:05:16 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-09-08 23:05:16 +0100 |
commit | 7ff996c2377b191ff829e6e03815acf9bfe85a14 (patch) | |
tree | 41c7ddddd1999a9d7ee499600a1291518716387f /py/scope.h | |
parent | 377b80b62450bde6fc0c06f50254f3c751127247 (diff) | |
download | micropython-7ff996c2377b191ff829e6e03815acf9bfe85a14.tar.gz micropython-7ff996c2377b191ff829e6e03815acf9bfe85a14.zip |
py: Convert [u]int to mp_[u]int_t in emit.h and associated .c files.
Towards resolving issue #50.
Diffstat (limited to 'py/scope.h')
-rw-r--r-- | py/scope.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/scope.h b/py/scope.h index 80834d9367..4aa3538510 100644 --- a/py/scope.h +++ b/py/scope.h @@ -44,7 +44,7 @@ typedef struct _id_info_t { // when it's an ID_INFO_KIND_LOCAL this is the unique number of the local // whet it's an ID_INFO_KIND_CELL/FREE this is the unique number of the closed over variable uint16_t local_num; - qstr qstr; + qstr qst; } id_info_t; // scope is a "block" in Python parlance |