diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/diff.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editors/diff.c b/editors/diff.c index eac4b08c5..4e51f6f76 100644 --- a/editors/diff.c +++ b/editors/diff.c | |||
@@ -1021,11 +1021,12 @@ static unsigned diffreg(char *file1, char *file2, int flags) | |||
1021 | rval = D_SAME; | 1021 | rval = D_SAME; |
1022 | 1022 | ||
1023 | if (flags & D_EMPTY1) | 1023 | if (flags & D_EMPTY1) |
1024 | f1 = xfopen(bb_dev_null, "r"); | 1024 | /* can't be stdin, but xfopen_stdin() is smaller code */ |
1025 | f1 = xfopen_stdin(bb_dev_null); | ||
1025 | else | 1026 | else |
1026 | f1 = xfopen_stdin(file1); | 1027 | f1 = xfopen_stdin(file1); |
1027 | if (flags & D_EMPTY2) | 1028 | if (flags & D_EMPTY2) |
1028 | f2 = xfopen(bb_dev_null, "r"); | 1029 | f2 = xfopen_stdin(bb_dev_null); |
1029 | else | 1030 | else |
1030 | f2 = xfopen_stdin(file2); | 1031 | f2 = xfopen_stdin(file2); |
1031 | 1032 | ||