Skip to content

Commit

Permalink
Get rid of unused-params warning
Browse files Browse the repository at this point in the history
  • Loading branch information
umlaeute committed Nov 20, 2024
1 parent 791b1a4 commit 5e440c7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions binfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ static void *binfile_new(t_symbol *s, int argc, t_atom *argv)
t_binfile *x = (t_binfile *)pd_new(binfile_class);
t_symbol *pathSymbol;
int i;
(void)s;

x->x_fP = NULL;
x->x_fPath[0] = '\0';
Expand Down Expand Up @@ -253,6 +254,7 @@ static void binfile_add(t_binfile *x, t_symbol *s, int argc, t_atom *argv)
{
int i, j;
float f;
(void)s;

for (i = 0; i < argc; ++i)
{
Expand Down

0 comments on commit 5e440c7

Please sign in to comment.