as Rob Landley pointed out, need to fix the 1 versus i typo in indexing
This commit is contained in:
parent
0fb397e617
commit
1ece21bddd
@ -71,7 +71,7 @@ static void cmp_files(char **infiles)
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < 2; ++i) {
|
for (i = 0; i < 2; ++i) {
|
||||||
streams[i] = ((infiles[i][0] == '=' && infiles[1][1]) ? stdin : bb_xfopen(infiles[i], "r"));
|
streams[i] = ((infiles[i][0] == '=' && infiles[i][1]) ? stdin : bb_xfopen(infiles[i], "r"));
|
||||||
fgets(thisline[i], LINE_LEN, streams[i]);
|
fgets(thisline[i], LINE_LEN, streams[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user