diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2012-08-02 18:25:30 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-08-05 12:42:14 -0700 |
commit | ee922391864026097a196f97ecb14548ab2bf211 (patch) | |
tree | 80fa401270bc2931015f72e2bffad8ac9fb6be57 | |
parent | Git 1.7.6.6 (diff) | |
download | tgif-ee922391864026097a196f97ecb14548ab2bf211.tar.xz |
apply: delete unused deflate_origlen from patch struct
It hasn't been used since 2006, as of commit 3cd4f5e8
"git-apply --binary: clean up and prepare for --reverse"
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin/apply.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/builtin/apply.c b/builtin/apply.c index f2edc52818..74f47486fe 100644 --- a/builtin/apply.c +++ b/builtin/apply.c @@ -178,7 +178,6 @@ struct patch { int is_new, is_delete; /* -1 = unknown, 0 = false, 1 = true */ int rejected; unsigned ws_rule; - unsigned long deflate_origlen; int lines_added, lines_deleted; int score; unsigned int is_toplevel_relative:1; |