diff options
author | Ron Yorston <rmy@pobox.com> | 2021-02-16 09:09:12 +0000 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-02-22 19:00:07 +0100 |
commit | 858f8aafacf93ff4642a2f62dc0d7f0f31f95cce (patch) | |
tree | 7f430e403e21bf97dc75f4e9ec6a72b9fb7715e5 | |
parent | 9fa7d7d97d374b091819670299f25cad87a75779 (diff) | |
download | busybox-w32-858f8aafacf93ff4642a2f62dc0d7f0f31f95cce.tar.gz busybox-w32-858f8aafacf93ff4642a2f62dc0d7f0f31f95cce.tar.bz2 busybox-w32-858f8aafacf93ff4642a2f62dc0d7f0f31f95cce.zip |
diff: code shrink
function old new delta
diff_main 1515 1495 -20
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-20) Total: -20 bytes
Signed-off-by: Ron Yorston <rmy@pobox.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | editors/diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/diff.c b/editors/diff.c index 280091756..1adc4cbc7 100644 --- a/editors/diff.c +++ b/editors/diff.c | |||
@@ -1050,7 +1050,7 @@ int diff_main(int argc UNUSED_PARAM, char **argv) | |||
1050 | /* diffreg can get non-regular files here */ | 1050 | /* diffreg can get non-regular files here */ |
1051 | print_status(gotstdin > 1 ? STATUS_SAME : diffreg(file), file); | 1051 | print_status(gotstdin > 1 ? STATUS_SAME : diffreg(file), file); |
1052 | 1052 | ||
1053 | if (dirfile) | 1053 | if (ENABLE_FEATURE_CLEAN_UP && dirfile) |
1054 | free(file[dir]); | 1054 | free(file[dir]); |
1055 | } | 1055 | } |
1056 | 1056 | ||