diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-19 16:02:09 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-19 16:02:09 +0000 |
commit | a11ceca807bd7a958c3d45ce02fe23cda0085f7d (patch) | |
tree | c2da00732cfd5343de5e2ead9adc9dbd7826952d /py/obj.h | |
parent | 136b149e417314e5ad46b3ee78b811df57e74f41 (diff) | |
download | micropython-a11ceca807bd7a958c3d45ce02fe23cda0085f7d.tar.gz micropython-a11ceca807bd7a958c3d45ce02fe23cda0085f7d.zip |
Change int to uint for n_args in function with variable arguments.
Diffstat (limited to 'py/obj.h')
-rw-r--r-- | py/obj.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -82,7 +82,7 @@ typedef mp_obj_t (*mp_fun_1_t)(mp_obj_t); typedef mp_obj_t (*mp_fun_2_t)(mp_obj_t, mp_obj_t); typedef mp_obj_t (*mp_fun_3_t)(mp_obj_t, mp_obj_t, mp_obj_t); typedef mp_obj_t (*mp_fun_t)(void); -typedef mp_obj_t (*mp_fun_var_t)(int n, const mp_obj_t *); +typedef mp_obj_t (*mp_fun_var_t)(uint n, const mp_obj_t *); typedef mp_obj_t (*mp_fun_kw_t)(uint n, const mp_obj_t *, struct _mp_map_t *); typedef enum { |