From 5e45e0b4a1ff8ec3a9d60e34154f83909dda67a7 Mon Sep 17 00:00:00 2001 From: vapier Date: Fri, 13 May 2005 03:09:20 +0000 Subject: as Rob Landley pointed out, need to fix the 1 versus i typo in indexing git-svn-id: svn://busybox.net/trunk/busybox@10323 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- coreutils/comm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]); } -- cgit v1.2.3-55-g6feb