We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 97e57e8 + 4006455 commit 5961facCopy full SHA for 5961fac
tests/object/blob/fromstream.c
@@ -17,22 +17,6 @@ void test_object_blob_fromstream__cleanup(void)
17
cl_git_sandbox_cleanup();
18
}
19
20
-static int text_chunked_source_cb(char *content, size_t max_length, void *payload)
21
-{
22
- int *count;
23
-
24
- GIT_UNUSED(max_length);
25
26
- count = (int *)payload;
27
- (*count)--;
28
29
- if (*count == 0)
30
- return 0;
31
32
- strcpy(content, textual_content);
33
- return (int)strlen(textual_content);
34
-}
35
36
void test_object_blob_fromstream__multiple_write(void)
37
{
38
git_oid expected_id, id;
0 commit comments