diff options
author | Damien George <damien.p.george@gmail.com> | 2014-09-03 22:47:23 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-09-03 22:47:23 +0100 |
commit | dda46460fff56c0756adba0d63fd72b311bdbcc9 (patch) | |
tree | a93c903fe6e5e8b5f8078fb3555fa8049c1e340c /py/compile.c | |
parent | a669cbc690a2540f6a4cfe453fa4b5bab074d940 (diff) | |
download | micropython-dda46460fff56c0756adba0d63fd72b311bdbcc9.tar.gz micropython-dda46460fff56c0756adba0d63fd72b311bdbcc9.zip |
Code style/whitespace cleanup; remove obsolete headers.
And move the MAP_ANON redefinition from py/asmx64.c to unix/alloc.c.
Diffstat (limited to 'py/compile.c')
-rw-r--r-- | py/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/compile.c b/py/compile.c index 267eb2c181..d920187033 100644 --- a/py/compile.c +++ b/py/compile.c @@ -3692,7 +3692,7 @@ mp_obj_t mp_compile(mp_parse_node_t pn, qstr source_file, uint emit_opt, bool is #elif MICROPY_EMIT_THUMB emit_native_thumb_free(emit_native); #elif MICROPY_EMIT_ARM - emit_native_arm_free(emit_native); + emit_native_arm_free(emit_native); #endif } #endif |