From 2323ef9182f9b57b96c7b4e1b414c18591a00bff Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 11 May 2014 18:00:45 +0100 Subject: py: Rename globally-accessible tuple functions, prefix with mp_obj_. Likely there are other functions that should be renamed, but this is a start. --- py/objexcept.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/objexcept.c') diff --git a/py/objexcept.c b/py/objexcept.c index 26997ef83..60b3565f6 100644 --- a/py/objexcept.c +++ b/py/objexcept.c @@ -76,7 +76,7 @@ STATIC void mp_obj_exception_print(void (*print)(void *env, const char *fmt, ... return; } } - tuple_print(print, env, o->args, kind); + mp_obj_tuple_print(print, env, o->args, kind); } mp_obj_t mp_obj_exception_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_obj_t *args) { -- cgit v1.2.3