aboutsummaryrefslogtreecommitdiff
path: root/py/objboundmeth.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-10-03 19:52:22 +0100
committerDamien George <damien.p.george@gmail.com>2014-10-03 19:52:22 +0100
commit39dc1454788d1c6fb06c79871c7cd6e12aeb50a0 (patch)
tree12cb09a1c24b932ca7bbf715a662e78c838e1bf9 /py/objboundmeth.c
parent3eaa0c383317f05b678422f88546ecf21ea4f9bb (diff)
py: Change [u]int to mp_[u]int_t in qstr.[ch], and some other places.
This should pretty much resolve issue #50.
Diffstat (limited to 'py/objboundmeth.c')
-rw-r--r--py/objboundmeth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objboundmeth.c b/py/objboundmeth.c
index 6040acee7..609895032 100644
--- a/py/objboundmeth.c
+++ b/py/objboundmeth.c
@@ -55,7 +55,7 @@ mp_obj_t bound_meth_call(mp_obj_t self_in, mp_uint_t n_args, mp_uint_t n_kw, con
// need to insert self->self before all other args and then call self->meth
- int n_total = n_args + 2 * n_kw;
+ mp_uint_t n_total = n_args + 2 * n_kw;
if (n_total <= 4) {
// use stack to allocate temporary args array
mp_obj_t args2[5];