aboutsummaryrefslogtreecommitdiff
path: root/src/tof.h
diff options
context:
space:
mode:
authorThomas O Fredericks <mrtof@users.sourceforge.net>2009-10-25 14:07:04 +0000
committerThomas O Fredericks <mrtof@users.sourceforge.net>2009-10-25 14:07:04 +0000
commite6d36d808bebfabbb4c11bf46f0c80acb5e35a6a (patch)
tree11cf74002f8dd46461380c8bb024cfd84bd20ca8 /src/tof.h
parente2377f078623cb33813ba4f5acb56adeb9d119aa (diff)
Removed unused arguments in tof.h
svn path=/trunk/externals/tof/; revision=12672
Diffstat (limited to 'src/tof.h')
-rw-r--r--src/tof.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tof.h b/src/tof.h
index f6d2eba..48ed597 100644
--- a/src/tof.h
+++ b/src/tof.h
@@ -11,8 +11,8 @@
-char tof_buf_temp_a[MAXPDSTRING];
-char tof_buf_temp_b[MAXPDSTRING];
+static char tof_buf_temp_a[MAXPDSTRING];
+static char tof_buf_temp_b[MAXPDSTRING];
/*
@@ -203,7 +203,7 @@ static int tof_next_tagged_argument(char tag, int ac, t_atom *av, int* ac_a, t_a
-static int tof_find_tag(char tag, t_symbol* name, int ac, t_atom* av) {
+static int tof_find_symbol(t_symbol* name, int ac, t_atom* av) {
int i;
for (i=0; i<ac;i++) {
if ( IS_A_SYMBOL(av,i) && name == atom_getsymbol(av+i) ) {