reorder include <sys/types.h> and <sys/types.h>.
[oweals/busybox.git] / coreutils / comm.c
index 7471c3b318ff6e3a2919aee5ff46639ff51d526a..772dafc4dfda1b32ee480f1fc05a3133c908291f 100644 (file)
@@ -42,7 +42,7 @@ static void writeline(char *line, int class)
 {
        if (class == 0) {
                if (!only_file_1)
-               return;
+                       return;
        } else if (class == 1) {
                if (!only_file_2)
                        return;
@@ -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]);
        }