Remove unnecessary leading line whitespace before a tab

This commit is contained in:
Landon Curt Noll
2021-11-07 20:14:28 -08:00
parent 2ca6e789ca
commit 27f977b545
45 changed files with 144 additions and 144 deletions

View File

@@ -731,7 +731,7 @@ rodseth_xhn(x, h, n)
return 0;
}
/*
/*
* Check for jacobi(x-2, h*2^n-1) == 1 (Ref4, condition 1) part 1
*/
testval = h*2^n-1;
@@ -739,7 +739,7 @@ rodseth_xhn(x, h, n)
return 0;
}
/*
/*
* Check for jacobi(x+2, h*2^n-1) == -1 (Ref4, condition 1) part 2
*/
if (jacobi(x+2, testval) != -1) {