summaryrefslogtreecommitdiffstatshomepage
path: root/py/nativeglue.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-08-30 14:59:21 +0100
committerDamien George <damien.p.george@gmail.com>2014-08-30 14:59:21 +0100
commit4abff7500fb05430a2ce952a2430d4d0ba16047e (patch)
treeb88ab89a41da9d9d71ad95157a4cf9bbaffb11e6 /py/nativeglue.c
parent4d91723587b27c5a1da7e759e3f761a16b35d4bd (diff)
downloadmicropython-4abff7500fb05430a2ce952a2430d4d0ba16047e.tar.gz
micropython-4abff7500fb05430a2ce952a2430d4d0ba16047e.zip
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/nativeglue.c')
-rw-r--r--py/nativeglue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/nativeglue.c b/py/nativeglue.c
index b0ab595eb9..d269650adb 100644
--- a/py/nativeglue.c
+++ b/py/nativeglue.c
@@ -71,7 +71,7 @@ mp_obj_t mp_convert_native_to_obj(mp_uint_t val, mp_uint_t type) {
// wrapper that accepts n_args and n_kw in one argument
// (native emitter can only pass at most 3 arguments to a function)
-mp_obj_t mp_native_call_function_n_kw(mp_obj_t fun_in, uint n_args_kw, const mp_obj_t *args) {
+mp_obj_t mp_native_call_function_n_kw(mp_obj_t fun_in, mp_uint_t n_args_kw, const mp_obj_t *args) {
return mp_call_function_n_kw(fun_in, n_args_kw & 0xff, (n_args_kw >> 8) & 0xff, args);
}