diff options
Diffstat (limited to 'kernel/arm/iamax.c')
-rw-r--r-- | kernel/arm/iamax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/arm/iamax.c b/kernel/arm/iamax.c index 3b7fe1cb1..d211776e9 100644 --- a/kernel/arm/iamax.c +++ b/kernel/arm/iamax.c @@ -61,7 +61,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) while(i < n) { - if( ABS(x[ix]) > ABS(maxf) ) + if( ABS(x[ix]) > ABS(maxf) ) { max = i; maxf = ABS(x[ix]); @@ -71,5 +71,5 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) } return(max+1); } - + |