diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-05-13 03:09:20 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-05-13 03:09:20 +0000 |
commit | 1ece21bddd6780aef82dafa481187bda43174a72 (patch) | |
tree | 2650b7d48aefcbab9956018d42eef7f077306e11 | |
parent | 0fb397e6176bebd31d27f8b2105b808091207366 (diff) | |
download | busybox-1ece21bddd6780aef82dafa481187bda43174a72.tar.gz |
as Rob Landley pointed out, need to fix the 1 versus i typo in indexing
-rw-r--r-- | coreutils/comm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/comm.c b/coreutils/comm.c index d3ca9c1b7..772dafc4d 100644 --- a/coreutils/comm.c +++ b/coreutils/comm.c @@ -71,7 +71,7 @@ static void cmp_files(char **infiles) int 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]); } |