Browse Source

Fix misleading indentation (spotted by GCC 6)

Milan Bouchet-Valat 9 years ago
parent
commit
949c530994
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/k_rem_pio2.c

+ 2 - 1
src/k_rem_pio2.c

@@ -311,7 +311,8 @@ __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec)
 
     /* compute q[0],q[1],...q[jk] */
 	for (i=0;i<=jk;i++) {
-	    for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j]; q[i] = fw;
+	    for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j];
+	    q[i] = fw;
 	}
 
 	jz = jk;