diff options
author | John R. Lenton <jlenton@gmail.com> | 2014-01-13 22:55:51 +0000 |
---|---|---|
committer | John R. Lenton <jlenton@gmail.com> | 2014-01-13 22:55:51 +0000 |
commit | 10d2f72860efa611b48de8c6d8a52ffa8309a1c3 (patch) | |
tree | 7f1952ea7e7b84f53877208db42e903e7cbd79b5 /py/builtinimport.c | |
parent | 95499193497ce1fd15de217f7b69fc2f91a37dbf (diff) | |
parent | ca318bba0d97c66d8fb14a089d8fa269a0e1b424 (diff) | |
download | micropython-10d2f72860efa611b48de8c6d8a52ffa8309a1c3.tar.gz micropython-10d2f72860efa611b48de8c6d8a52ffa8309a1c3.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'py/builtinimport.c')
-rw-r--r-- | py/builtinimport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/builtinimport.c b/py/builtinimport.c index 90a0fc3394..33576e3f0e 100644 --- a/py/builtinimport.c +++ b/py/builtinimport.c @@ -18,7 +18,7 @@ #include "map.h" #include "builtin.h" -mp_obj_t mp_builtin___import__(int n, mp_obj_t *args) { +mp_obj_t mp_builtin___import__(int n_args, mp_obj_t *args) { /* printf("import:\n"); for (int i = 0; i < n; i++) { |