]> git.ipfire.org Git - thirdparty/git.git/blobdiff - builtin/blame.c
Merge branch 'bw/format-patch-o-create-leading-dirs'
[thirdparty/git.git] / builtin / blame.c
index b6534d4dea9ad81a34eaf099f7cf9a0a1e56f410..e946ba6cd9dd20b02f89ac5eba5f5cf3bf390ea2 100644 (file)
@@ -26,7 +26,6 @@
 #include "progress.h"
 #include "object-store.h"
 #include "blame.h"
-#include "string-list.h"
 #include "refs.h"
 
 static char blame_usage[] = N_("git blame [<options>] [<rev-opts>] [<rev>] [--] <file>");
@@ -460,7 +459,7 @@ static void emit_other(struct blame_scoreboard *sb, struct blame_entry *ent, int
 
        for (cnt = 0; cnt < ent->num_lines; cnt++) {
                char ch;
-               int length = (opt & OUTPUT_LONG_OBJECT_NAME) ? GIT_SHA1_HEXSZ : abbrev;
+               int length = (opt & OUTPUT_LONG_OBJECT_NAME) ? the_hash_algo->hexsz : abbrev;
 
                if (opt & OUTPUT_COLOR_LINE) {
                        if (cnt > 0) {
@@ -885,6 +884,7 @@ int cmd_blame(int argc, const char **argv, const char *prefix)
        struct range_set ranges;
        unsigned int range_i;
        long anchor;
+       const int hexsz = the_hash_algo->hexsz;
 
        setup_default_color_by_age();
        git_config(git_blame_config, &output_option);
@@ -931,11 +931,11 @@ parse_done:
        } else if (show_progress < 0)
                show_progress = isatty(2);
 
-       if (0 < abbrev && abbrev < GIT_SHA1_HEXSZ)
+       if (0 < abbrev && abbrev < hexsz)
                /* one more abbrev length is needed for the boundary commit */
                abbrev++;
        else if (!abbrev)
-               abbrev = GIT_SHA1_HEXSZ;
+               abbrev = hexsz;
 
        if (revs_file && read_ancestry(revs_file))
                die_errno("reading graft file '%s' failed", revs_file);