Skip to content
Snippets Groups Projects
Commit b9bdce26 authored by pokergaming's avatar pokergaming
Browse files

bugfix for format string without a corresponding variable

parent 8ac5935e
No related branches found
No related tags found
No related merge requests found
...@@ -281,7 +281,7 @@ Nexpr_new(t_symbol *s, int ac, t_atom *av) ...@@ -281,7 +281,7 @@ Nexpr_new(t_symbol *s, int ac, t_atom *av)
x = (t_expr *)pd_new(fexpr_tilde_class); x = (t_expr *)pd_new(fexpr_tilde_class);
SET_FEXPR_TILDE(x); SET_FEXPR_TILDE(x);
} else { } else {
post("expr_new: bad object name '%s'"); post("expr_new: bad object name '%s'", s->s_name);
/* assume expr */ /* assume expr */
x = (t_expr *)pd_new(expr_class); x = (t_expr *)pd_new(expr_class);
SET_EXPR(x); SET_EXPR(x);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment