From: Mike Frysinger Date: Fri, 13 May 2005 03:09:20 +0000 (-0000) Subject: as Rob Landley pointed out, need to fix the 1 versus i typo in indexing X-Git-Tag: 1_1_0~975 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1ece21bddd6780aef82dafa481187bda43174a72;p=platform%2Fupstream%2Fbusybox.git as Rob Landley pointed out, need to fix the 1 versus i typo in indexing --- diff --git a/coreutils/comm.c b/coreutils/comm.c index d3ca9c1..772dafc 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]); }