mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-12 01:30:50 +00:00
Fix initializer error
This commit is contained in:
parent
607fe73370
commit
4fd847bb94
@ -10,11 +10,11 @@ void test_blame_getters__initialize(void)
|
|||||||
git_blame_options opts = GIT_BLAME_OPTIONS_INIT;
|
git_blame_options opts = GIT_BLAME_OPTIONS_INIT;
|
||||||
|
|
||||||
git_blame_hunk hunks[] = {
|
git_blame_hunk hunks[] = {
|
||||||
{ 3, {{0}}, 1, {{0}}, "a", 0},
|
{ 3, {{0}}, 1, NULL, {{0}}, "a", 0},
|
||||||
{ 3, {{0}}, 4, {{0}}, "b", 0},
|
{ 3, {{0}}, 4, NULL, {{0}}, "b", 0},
|
||||||
{ 3, {{0}}, 7, {{0}}, "c", 0},
|
{ 3, {{0}}, 7, NULL, {{0}}, "c", 0},
|
||||||
{ 3, {{0}}, 10, {{0}}, "d", 0},
|
{ 3, {{0}}, 10, NULL, {{0}}, "d", 0},
|
||||||
{ 3, {{0}}, 13, {{0}}, "e", 0},
|
{ 3, {{0}}, 13, NULL, {{0}}, "e", 0},
|
||||||
};
|
};
|
||||||
|
|
||||||
g_blame = git_blame__alloc(NULL, opts, "");
|
g_blame = git_blame__alloc(NULL, opts, "");
|
||||||
|
Loading…
Reference in New Issue
Block a user