reorder include <sys/types.h> and <sys/types.h>.
[oweals/busybox.git] / coreutils / comm.c
index d3ca9c1b7ad7f91231f79516cd60f7f3ff15b70c..772dafc4dfda1b32ee480f1fc05a3133c908291f 100644 (file)
@@ -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]);
        }