Skip to content

Commit

Permalink
fix error function name
Browse files Browse the repository at this point in the history
  • Loading branch information
fdch committed Jun 18, 2023
1 parent b8dedcf commit aa96f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/counter.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ static void *counter_new(t_symbol *s, t_int argc, t_atom *argv)
else if (!strcmp(argv->a_w.w_symbol->s_name, "-i") && argc >= 2 && argv[1].a_type == A_FLOAT)
counter_i(x,atom_getfloatarg(1, argc, argv)), argc -= 1, argv += 1;
else
error("counter: unknown flag ..."), postatom(argc, argv), endpost();
pd_error(x, "counter: unknown flag ..."), postatom(argc, argv), endpost();
argc--; argv++;
}
if (argv->a_type == A_FLOAT)
Expand Down

0 comments on commit aa96f11

Please sign in to comment.