aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-04-14 23:15:06 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-04-14 23:15:06 +0000
commit69924af9abed9b9d548066374320c0a1714eb9de (patch)
tree114ee773a79d63f081193d7fcfb950c2d32d525e
parent18019667a0ad0d8902c3664178fe04bca7ff13c5 (diff)
fixed simple typos in name
svn path=/trunk/externals/hcs/; revision=11024
-rw-r--r--split_path.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/split_path.c b/split_path.c
index ea44e91..dfd8c67 100644
--- a/split_path.c
+++ b/split_path.c
@@ -13,7 +13,7 @@
static char *version = "$Revision: 1.1 $";
-t_int strip_path_instance_count;
+t_int split_path_instance_count;
/* ------------------------ split_path ----------------------------- */
@@ -60,12 +60,12 @@ static void *split_path_new()
t_split_path *x = (t_split_path *)pd_new(split_path_class);
x->x_path_outlet = (t_outlet *)outlet_new(&x->x_obj, &s_symbol);
x->x_filename_outlet = (t_outlet *)outlet_new(&x->x_obj, &s_symbol);
- if(!strip_path_instance_count)
+ if(!split_path_instance_count)
{
- post("[strip_path] %s",version);
+ post("[split_path] %s",version);
post("\twritten by Hans-Christoph Steiner <hans@at.or.at>");
}
- strip_path_instance_count++;
+ split_path_instance_count++;
return (x);
}