diff options
author | Damien George <damien.p.george@gmail.com> | 2013-12-30 12:52:32 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2013-12-30 12:52:32 +0000 |
commit | 212c296c0b24dddd19099f9188176a14ade42d86 (patch) | |
tree | 50bdcb156669c1e6c77f0ba37206314f104196c4 /py/showbc.c | |
parent | cd340c44c28e2b07513fbe4d921a7eccca2dcd7a (diff) | |
download | micropython-212c296c0b24dddd19099f9188176a14ade42d86.tar.gz micropython-212c296c0b24dddd19099f9188176a14ade42d86.zip |
Make unix-cpy cross platform; remove dependency of asmx64 on mpconfig.
Diffstat (limited to 'py/showbc.c')
-rw-r--r-- | py/showbc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/showbc.c b/py/showbc.c index 600d497960..b063c846ac 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -283,12 +283,12 @@ void mp_show_byte_code(const byte *ip, int len) { case MP_BC_BUILD_SET: DECODE_UINT; - printf("BUILD_SET %lu", unum); + printf("BUILD_SET " UINT_FMT, unum); break; case MP_BC_SET_ADD: DECODE_UINT; - printf("SET_ADD %lu", unum); + printf("SET_ADD " UINT_FMT, unum); break; case MP_BC_UNPACK_SEQUENCE: |