Skip to content

Commit 6d4196d

Browse files
Daniel WhiteDaniel White
authored andcommitted
Renamed i to j in D function. No functional or size change.
1 parent 26d46e5 commit 6d4196d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

iota.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ char c[H], *C,
1111
B[H], E, S, X, Y;
1212

1313
D(x, y, p, e) {
14-
int f=0,t, i, d, m, v, b
14+
int f=0,t, j, d, m, v, b
1515
F ;f<H;++f) { // Loop over squares looking for pieces.
16-
F i=T[(m=B[f])&7]-35,d=0;d<0 || (d=T[i++]-35);d=-d) { // Loop over move steps for this piece.
16+
F j=T[(m=B[f])&7]-35,d=0;d<0 || (d=T[j++]-35);d=-d) { // Loop over move steps for this piece.
1717
F t=f;m&S;) { // Loop over destination squares in this direction.
1818
// Illegal square or friendly capture?
1919
I (t+=d)&(b=136) | (v=B[t])&S K

0 commit comments

Comments
 (0)