From 6ba987cfd96dee381bf10466a91de1060ce7768e Mon Sep 17 00:00:00 2001 From: Martin Peach Date: Mon, 10 Nov 2014 22:12:32 +0000 Subject: Changed t_int to int, removed unused variable j. svn path=/trunk/externals/mrpeach/; revision=17379 --- tabfind/tabfind.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tabfind') 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) -- cgit v1.2.1