diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2020-01-24 18:04:51 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-01-27 13:22:19 +1100 |
commit | c3095b37e96aeb69564f53d30a12242ab42bbd02 (patch) | |
tree | f432b2c2c204436dec3834de7d67c297973a3180 /py/nativeglue.c | |
parent | 888ddb81ddfe9cd43991f8054967a0f0d5911cf1 (diff) | |
download | micropython-c3095b37e96aeb69564f53d30a12242ab42bbd02.tar.gz micropython-c3095b37e96aeb69564f53d30a12242ab42bbd02.zip |
py/nativeglue: Fix typo about where the native fun table enum is.
Diffstat (limited to 'py/nativeglue.c')
-rw-r--r-- | py/nativeglue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/nativeglue.c b/py/nativeglue.c index 9be7449d20..2e0ac56ca5 100644 --- a/py/nativeglue.c +++ b/py/nativeglue.c @@ -253,7 +253,7 @@ STATIC double mp_obj_get_float_to_d(mp_obj_t o) { #endif -// these must correspond to the respective enum in runtime0.h +// these must correspond to the respective enum in nativeglue.h const mp_fun_table_t mp_fun_table = { mp_const_none, mp_const_false, |