aboutsummaryrefslogtreecommitdiff
path: root/src/tof.h
diff options
context:
space:
mode:
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) ) {