commit 1fbe7c6552486f9bef9e7b286540c95592fe2936
parent ba26711a10a2a2626612ee2043a116517faaf200
Author: fundamental <mark.d.mccurry@gmail.com>
Date: Wed, 21 Jun 2023 17:12:55 -0400
SaveOSC: Fix compiler warning on struct init
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Tests/SaveOSC.cpp b/src/Tests/SaveOSC.cpp
@@ -475,7 +475,7 @@ class SaveOSCTest
{
git_libgit2_init();
- git_buf root_path = {0};
+ git_buf root_path = {0, 0, 0};
git_repository_discover(&root_path, ".", 0, NULL);
git_repository *repo = NULL;