From 903d475a0bcde34a03e462b56a77564252876483 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 27 May 2005 15:53:31 -0700 Subject: [PATCH] [PATCH] Do not expose internal scaling to diff-helper. Instead we can normalize what diff-raw records at the diffcore side. Signed-off-by: Junio C Hamano Signed-off-by: Linus Torvalds --- diff-helper.c | 2 -- diff.c | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/diff-helper.c b/diff-helper.c index 2dd6bdac33..4da2614fc6 100644 --- a/diff-helper.c +++ b/diff-helper.c @@ -4,7 +4,6 @@ #include "cache.h" #include "strbuf.h" #include "diff.h" -#include "diffcore.h" /* just for MAX_SCORE */ static const char *pickaxe = NULL; static int line_termination = '\n'; @@ -78,7 +77,6 @@ int main(int ac, const char **av) { if (status == 'R' || status == 'C') { two_paths = 1; sscanf(cp, "%d", &score); - score = score * MAX_SCORE / 100; if (line_termination) { cp = strchr(cp, inter_name_termination); diff --git a/diff.c b/diff.c index 680b521a8b..5031c7d685 100644 --- a/diff.c +++ b/diff.c @@ -886,7 +886,7 @@ void diff_helper_input(unsigned old_mode, if (new_mode) fill_filespec(two, new_sha1, new_mode); dp = diff_queue(&diff_queued_diff, one, two); - dp->score = score; + dp->score = score * MAX_SCORE / 100; dp->status = status; } -- 2.11.4.GIT