Skip to content

Commit 086d98c

Browse files
committed
py/objstr: Make mp_obj_str_format_helper static.
1 parent 87e07ea commit 086d98c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/objstr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ STATIC NORETURN void terse_str_format_value_error(void) {
848848
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "bad format string"));
849849
}
850850

851-
vstr_t mp_obj_str_format_helper(const char *str, const char *top, int *arg_i, mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs) {
851+
STATIC vstr_t mp_obj_str_format_helper(const char *str, const char *top, int *arg_i, mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs) {
852852
vstr_t vstr;
853853
mp_print_t print;
854854
vstr_init_print(&vstr, 16, &print);

0 commit comments

Comments
 (0)