diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-01-16 02:01:21 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 13:53:22 +0200 |
commit | c91ca99adfb0a87a9a5073bf2ef7ec44aecb9158 (patch) | |
tree | 373d6c658a7bea877bc20542cfcb573066cbfb24 /src/arbran.c | |
parent | 5a7e7f61c9e5416c71ed4bfef74b09f0a5a556ef (diff) |
fixed a few warnings
svn path=/trunk/externals/maxlib/; revision=4411
Diffstat (limited to 'src/arbran.c')
-rw-r--r-- | src/arbran.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arbran.c b/src/arbran.c index cf76517..d708e11 100644 --- a/src/arbran.c +++ b/src/arbran.c @@ -57,7 +57,7 @@ static void rand_arbran_pdfscale(t_rand_arbran *x) t_float a = 0;
t_int k = 0;
t_float *tx, *tp;
- t_int ix, ip;
+ int ix, ip;
if (!garray_getfloatarray(bx, &ix, &tx))
{
post("arbran: couldn't read from array!");
@@ -86,7 +86,7 @@ static void rand_arbran_bang(t_rand_arbran *x) t_float a, u, a0, slope, b, d, r;
t_int k = 0;
t_float *tx, *tp;
- t_int ix, ip;
+ int ix, ip;
if (!garray_getfloatarray(bx, &ix, &tx))
{
post("arbran: couldn't read from array!");
|