From 69924af9abed9b9d548066374320c0a1714eb9de Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 14 Apr 2009 23:15:06 +0000 Subject: fixed simple typos in name svn path=/trunk/externals/hcs/; revision=11024 --- split_path.c | 8 ++++---- 1 file 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 "); } - strip_path_instance_count++; + split_path_instance_count++; return (x); } -- cgit v1.2.1