diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-07-01 02:13:42 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-07-01 02:14:08 +0300 |
commit | caa7334141e6d67ab6f3064b250e6729095ae56c (patch) | |
tree | 8100c9c8d828aa51a1a3f0bbbb958e9f5c549ff7 /py/objfun.c | |
parent | e95b6b5e0761d8fa40cc31d62888e503812db72a (diff) | |
download | micropython-caa7334141e6d67ab6f3064b250e6729095ae56c.tar.gz micropython-caa7334141e6d67ab6f3064b250e6729095ae56c.zip |
stackctrl: Add "mp_" prefix.
Diffstat (limited to 'py/objfun.c')
-rw-r--r-- | py/objfun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objfun.c b/py/objfun.c index f75e9142a2..74e959f9d3 100644 --- a/py/objfun.c +++ b/py/objfun.c @@ -356,7 +356,7 @@ continue2:; STATIC mp_obj_t fun_bc_call(mp_obj_t self_in, uint n_args, uint n_kw, const mp_obj_t *args) { - STACK_CHECK(); + MP_STACK_CHECK(); DEBUG_printf("Input n_args: %d, n_kw: %d\n", n_args, n_kw); DEBUG_printf("Input pos args: "); |