diff options
author | N.N. <electrickery@users.sourceforge.net> | 2015-06-09 17:45:57 +0000 |
---|---|---|
committer | N.N. <electrickery@users.sourceforge.net> | 2015-06-09 17:45:57 +0000 |
commit | 46f43299d2ac39135a4d2da28f3566639589d9b5 (patch) | |
tree | e536e32750f465250ee719fcf832cdf026470c0e /shared/common | |
parent | 502fd99b88abfb232bf514196e9e73e297dedc3b (diff) |
cyclone/.../vefl.[ch]: yet another almost forgotten part of the garray_getarraywords conversion.
svn path=/trunk/externals/miXed/; revision=17482
Diffstat (limited to 'shared/common')
-rw-r--r-- | shared/common/vefl.c | 4 | ||||
-rw-r--r-- | shared/common/vefl.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/shared/common/vefl.c b/shared/common/vefl.c index ef02bb7..c61dfca 100644 --- a/shared/common/vefl.c +++ b/shared/common/vefl.c @@ -25,7 +25,7 @@ #define VEFL_VERBOSE /* on failure *vszp is not modified */ -t_float *vefl_get(t_symbol *name, int *vszp, int indsp, t_pd *complain) +t_word *vefl_get(t_symbol *name, int *vszp, int indsp, t_pd *complain) { if (name && name != &s_) { @@ -33,7 +33,7 @@ t_float *vefl_get(t_symbol *name, int *vszp, int indsp, t_pd *complain) if (ap) { int vsz; - t_float *vec; + t_word *vec; if (garray_getfloatwords(ap, &vsz, &vec)) { if (indsp) garray_usedindsp(ap); diff --git a/shared/common/vefl.h b/shared/common/vefl.h index e470a80..6a09fdf 100644 --- a/shared/common/vefl.h +++ b/shared/common/vefl.h @@ -19,7 +19,7 @@ typedef struct _vefl double v_updtime; } t_vefl; -t_float *vefl_get(t_symbol *name, int *vszp, int indsp, t_pd *complain); +t_word *vefl_get(t_symbol *name, int *vszp, int indsp, t_pd *complain); t_vefl *vefl_new(t_symbol *name, int writable, t_glist *gl, t_garray *arr); t_vefl *vefl_placement_new(t_vefl *vp, t_symbol *name, int writable, t_glist *gl, t_garray *arr); |