Skip to content

Commit

Permalink
Merge pull request #1565 from martin-frbg/mipstypo
Browse files Browse the repository at this point in the history
Remove extraneous brace from previous commit of mips dsdot fix
  • Loading branch information
martin-frbg authored May 17, 2018
2 parents 5082fe4 + 95f7f02 commit 8dd3515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/mips/dot.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8dd3515

Please sign in to comment.