Skip to content

Commit 58595e7

Browse files
committed
Merge branch 'rs/blame-typefix-for-fingerprint'
Code cleanup. * rs/blame-typefix-for-fingerprint: blame: provide type of fingerprints pointer
2 parents ff41848 + 27f182b commit 58595e7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

blame.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#define BLAME_DEFAULT_MOVE_SCORE 20
1717
#define BLAME_DEFAULT_COPY_SCORE 40
1818

19+
struct fingerprint;
20+
1921
/*
2022
* One blob in a commit that is being suspected
2123
*/
@@ -52,7 +54,7 @@ struct blame_origin {
5254
struct blame_entry *suspects;
5355
mmfile_t file;
5456
int num_lines;
55-
void *fingerprints;
57+
struct fingerprint *fingerprints;
5658
struct object_id blob_oid;
5759
unsigned short mode;
5860
/* guilty gets set when shipping any suspects to the final

0 commit comments

Comments
 (0)