mirror of
https://github.com/git-for-windows/git.git
synced 2026-06-27 22:28:38 -05:00
Merge branch 'size-t/diff-delta-sizeof'
This commit is contained in:
committed by
Git for Windows Build Agent
commit
78e7dff997
2
delta.h
2
delta.h
@@ -28,7 +28,7 @@ void free_delta_index(struct delta_index *index);
|
||||
*
|
||||
* Given pointer must be what create_delta_index() returned, or NULL.
|
||||
*/
|
||||
unsigned long sizeof_delta_index(struct delta_index *index);
|
||||
size_t sizeof_delta_index(struct delta_index *index);
|
||||
|
||||
/*
|
||||
* create_delta: create a delta from given index for the given buffer
|
||||
|
||||
@@ -302,7 +302,7 @@ void free_delta_index(struct delta_index *index)
|
||||
free(index);
|
||||
}
|
||||
|
||||
unsigned long sizeof_delta_index(struct delta_index *index)
|
||||
size_t sizeof_delta_index(struct delta_index *index)
|
||||
{
|
||||
if (index)
|
||||
return index->memsize;
|
||||
|
||||
Reference in New Issue
Block a user