aboutsummaryrefslogtreecommitdiff
path: root/src/zexy.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-01-24 21:17:23 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-01-24 21:17:23 +0000
commit0be9cb9aac9019c0ba8f2709e27b3534f5fcaa51 (patch)
treeba2c4c5c5886271dc309a4bc38855637546e280d /src/zexy.c
parentdf9fa297c6f3d9782b82d85a0e4d4bc587df3538 (diff)
made all possible (well, most) functions "static" to not interfere with functions of the same name of other libraries
svn path=/trunk/externals/zexy/; revision=4482
Diffstat (limited to 'src/zexy.c')
-rw-r--r--src/zexy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zexy.c b/src/zexy.c
index 16ab156..8be4386 100644
--- a/src/zexy.c
+++ b/src/zexy.c
@@ -118,7 +118,7 @@ static void zexy_help(void)
static void *zexy_new(void)
{
t_zexy *x = (t_zexy *)pd_new(zexy_class);
- return (void *)x;
+ return (x);
}
void z_zexy_setup(void); /* defined in z_zexy.c */