Remove extraneous brace from previous commit
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>
Thu, 17 May 2018 16:43:59 +0000 (18:43 +0200)
committerGitHub <noreply@github.com>
Thu, 17 May 2018 16:43:59 +0000 (18:43 +0200)
kernel/mips/dot.c

index cbd3efc..89c9f80 100644 (file)
@@ -42,7 +42,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y)
        while(i < n)
        {
 #if defined(DSDOT)
-               dot += (double)(y[iy] * (double)x[ix] ;
+               dot += (double)y[iy] * (double)x[ix] ;
 #else
                dot += y[iy] * x[ix];
 #endif