summaryrefslogtreecommitdiffstatshomepage
path: root/py/showbc.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/showbc.c')
-rw-r--r--py/showbc.c4
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: