aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tabfind/tabfind.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tabfind/tabfind.c b/tabfind/tabfind.c
index b0a6502..87dd197 100644
--- a/tabfind/tabfind.c
+++ b/tabfind/tabfind.c
@@ -16,7 +16,7 @@ typedef struct _tabfind
{
t_object x_obj;
t_symbol *x_arrayname;
- t_int x_nth; /* which match to find */
+ int x_nth; /* which match to find */
} t_tabfind;
static void tabfind_bang(t_tabfind *x);
@@ -51,7 +51,7 @@ static void tabfind_list(t_tabfind *x, t_symbol *s, int argc, t_atom *argv)
t_float *vec;
#endif
int n, count = 0;
- int i, j;
+ int i;
/* first check the list for floatness... */
for (i = 0; i < argc; ++i)