mirror of
https://git.proxmox.com/git/libgit2
synced 2025-07-17 08:38:46 +00:00
tests: blob: remove unused callback function
This commit is contained in:
parent
73dab7692e
commit
4006455f01
@ -17,22 +17,6 @@ void test_object_blob_fromstream__cleanup(void)
|
||||
cl_git_sandbox_cleanup();
|
||||
}
|
||||
|
||||
static int text_chunked_source_cb(char *content, size_t max_length, void *payload)
|
||||
{
|
||||
int *count;
|
||||
|
||||
GIT_UNUSED(max_length);
|
||||
|
||||
count = (int *)payload;
|
||||
(*count)--;
|
||||
|
||||
if (*count == 0)
|
||||
return 0;
|
||||
|
||||
strcpy(content, textual_content);
|
||||
return (int)strlen(textual_content);
|
||||
}
|
||||
|
||||
void test_object_blob_fromstream__multiple_write(void)
|
||||
{
|
||||
git_oid expected_id, id;
|
||||
|
Loading…
Reference in New Issue
Block a user