diff options
author | Martin Peach <mrpeach@users.sourceforge.net> | 2014-11-10 22:12:32 +0000 |
---|---|---|
committer | Martin Peach <mrpeach@users.sourceforge.net> | 2014-11-10 22:12:32 +0000 |
commit | 6ba987cfd96dee381bf10466a91de1060ce7768e (patch) | |
tree | e751f4f391403fff04e729387045ee6c98c6712e /tabfind | |
parent | d55194ce854787c1ad8e6e49c5917849e5fb374a (diff) |
Changed t_int to int, removed unused variable j.
svn path=/trunk/externals/mrpeach/; revision=17379
Diffstat (limited to 'tabfind')
-rw-r--r-- | tabfind/tabfind.c | 4 |
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) |