From ce3b71d91b9cac3b462dec9ac2c7e397b55c00a6 Mon Sep 17 00:00:00 2001 From: Russell Belfer Date: Mon, 12 May 2014 10:28:45 -0700 Subject: Don't scale diff stat when not needed --- src/diff_stats.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/diff_stats.c') diff --git a/src/diff_stats.c b/src/diff_stats.c index 6ad670c42..42ccbfb87 100644 --- a/src/diff_stats.c +++ b/src/diff_stats.c @@ -284,6 +284,8 @@ int git_diff_stats_to_buf( if (width < STATS_FULL_MIN_SCALE) width = STATS_FULL_MIN_SCALE; } + if (width > stats->max_filestat) + width = 0; for (i = 0; i < stats->files_changed; ++i) { if ((delta = git_diff_get_delta(stats->diff, i)) == NULL) -- cgit v1.2.1