diff options
author | Damien George <damien.p.george@gmail.com> | 2014-08-30 14:59:21 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-08-30 14:59:21 +0100 |
commit | 4abff7500fb05430a2ce952a2430d4d0ba16047e (patch) | |
tree | b88ab89a41da9d9d71ad95157a4cf9bbaffb11e6 /py/scope.c | |
parent | 4d91723587b27c5a1da7e759e3f761a16b35d4bd (diff) |
py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.
Part of code cleanup, working towards resolving issue #50.
Diffstat (limited to 'py/scope.c')
-rw-r--r-- | py/scope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/scope.c b/py/scope.c index 2f184d164..c6b8636be 100644 --- a/py/scope.c +++ b/py/scope.c @@ -37,7 +37,7 @@ #include "emitglue.h" #include "scope.h" -scope_t *scope_new(scope_kind_t kind, mp_parse_node_t pn, qstr source_file, uint emit_options) { +scope_t *scope_new(scope_kind_t kind, mp_parse_node_t pn, qstr source_file, mp_uint_t emit_options) { scope_t *scope = m_new0(scope_t, 1); scope->kind = kind; scope->pn = pn; |