mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
count-delta: match get_delta_hdr_size() changes.
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
8960844a78
commit
98cf815607
1 changed files with 2 additions and 2 deletions
|
@ -32,8 +32,8 @@ int count_delta(void *delta_buf, unsigned long delta_size,
|
|||
data = delta_buf;
|
||||
top = delta_buf + delta_size;
|
||||
|
||||
src_size = get_delta_hdr_size(&data);
|
||||
dst_size = get_delta_hdr_size(&data);
|
||||
src_size = get_delta_hdr_size(&data, top);
|
||||
dst_size = get_delta_hdr_size(&data, top);
|
||||
|
||||
added_literal = copied_from_source = out = 0;
|
||||
while (data < top) {
|
||||
|
|
Loading…
Reference in a new issue