diff options
author | Damien George <damien.p.george@gmail.com> | 2014-08-30 14:19:41 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-08-30 14:19:41 +0100 |
commit | d182b98a37bde34c06ae705624da03cf381eb4dc (patch) | |
tree | 0e7599a07d2c3ad17be2a3a708759c07e638a20d /unix/modffi.c | |
parent | 9c4cbe2ac0ae4c51270f21ba9c974dd24f6b9d55 (diff) |
py: Change all uint to mp_uint_t in obj.h.
Part of code cleanup, working towards resolving issue #50.
Diffstat (limited to 'unix/modffi.c')
-rw-r--r-- | unix/modffi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/modffi.c b/unix/modffi.c index b5ab35e7c..c788f5dd2 100644 --- a/unix/modffi.c +++ b/unix/modffi.c @@ -124,7 +124,7 @@ STATIC ffi_type *char2ffi_type(char c) STATIC ffi_type *get_ffi_type(mp_obj_t o_in) { if (MP_OBJ_IS_STR(o_in)) { - uint len; + mp_uint_t len; const char *s = mp_obj_str_get_data(o_in, &len); ffi_type *t = char2ffi_type(*s); if (t != NULL) { |