Skip to content

Commit a5c04e3

Browse files
authored
Update scal.c
1 parent 536200b commit a5c04e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/arm/scal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ int CNAME(BLASLONG n, BLASLONG dummy0, BLASLONG dummy1, FLOAT da, FLOAT *x, BLAS
4848
{
4949

5050
if ( da == 0.0 )
51-
if (!isnan(x[i] && !isinf(x[i])) {
51+
if (!isnan(x[i]) && !isinf(x[i])) {
5252
x[i]=0.0;
5353
} else {
5454
x[i]=NAN;

0 commit comments

Comments
 (0)