diff options
author | Martin Peach <mrpeach@users.sourceforge.net> | 2014-11-10 22:09:11 +0000 |
---|---|---|
committer | Martin Peach <mrpeach@users.sourceforge.net> | 2014-11-10 22:09:11 +0000 |
commit | d55194ce854787c1ad8e6e49c5917849e5fb374a (patch) | |
tree | 45c7d85c8a8d0f297b1e3e65259f1c730de54264 /runningmean | |
parent | 63f6b4ba0850e106fd7b4ed98d1623e6eecc3c9e (diff) |
Changed t_int to int
svn path=/trunk/externals/mrpeach/; revision=17378
Diffstat (limited to 'runningmean')
-rw-r--r-- | runningmean/runningmean.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/runningmean/runningmean.c b/runningmean/runningmean.c index a92f309..ac9a4ac 100644 --- a/runningmean/runningmean.c +++ b/runningmean/runningmean.c @@ -11,16 +11,16 @@ typedef struct _runningmean { t_object x_obj; - t_int x_in1; - t_int x_in2; - t_int x_in3; + int x_in1; + int x_in2; + int x_in3; t_outlet *x_out; t_inlet *x_inlet2; - t_int x_n; - t_int x_originalsize; + int x_n; + int x_originalsize; t_float *x_data; t_float x_mean; - t_int x_pointer; + int x_pointer; } t_runningmean; static t_class *runningmean_class; |