8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b871167 commit 4f033a1Copy full SHA for 4f033a1
src/blame.c
@@ -268,7 +268,7 @@ static git_blame_hunk *split_hunk_in_vector(
268
static int index_blob_lines(git_blame *blame)
269
{
270
const char *buf = blame->final_buf;
271
- size_t len = blame->final_buf_size;
+ git_object_size_t len = blame->final_buf_size;
272
int num = 0, incomplete = 0, bol = 1;
273
size_t *i;
274
src/blame.h
@@ -84,7 +84,7 @@ struct git_blame {
84
git_blame__entry *ent;
85
int num_lines;
86
const char *final_buf;
87
- size_t final_buf_size;
+ git_object_size_t final_buf_size;
88
};
89
90
git_blame *git_blame__alloc(
0 commit comments