Skip to content

Commit 95f7f02

Browse files
authored
Remove extraneous brace from previous commit
1 parent 6791294 commit 95f7f02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/mips/dot.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y)
4242
while(i < n)
4343
{
4444
#if defined(DSDOT)
45-
dot += (double)(y[iy] * (double)x[ix] ;
45+
dot += (double)y[iy] * (double)x[ix] ;
4646
#else
4747
dot += y[iy] * x[ix];
4848
#endif

0 commit comments

Comments
 (0)