X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Fcomm.c;h=772dafc4dfda1b32ee480f1fc05a3133c908291f;hb=843c5ef0f95e0a6f61f4e27d0355aca5e09ee6b1;hp=d3ca9c1b7ad7f91231f79516cd60f7f3ff15b70c;hpb=0fb397e6176bebd31d27f8b2105b808091207366;p=oweals%2Fbusybox.git 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]); }