mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-29 22:25:04 +00:00
Merge pull request #3088 from volftomas/patch-1
Fixed unused warning in tests/rebase/merge.c
This commit is contained in:
commit
1275de53c5
@ -517,6 +517,11 @@ void rebase_checkout_progress_cb(
|
|||||||
void *payload)
|
void *payload)
|
||||||
{
|
{
|
||||||
int *called = payload;
|
int *called = payload;
|
||||||
|
|
||||||
|
GIT_UNUSED(path);
|
||||||
|
GIT_UNUSED(completed_steps);
|
||||||
|
GIT_UNUSED(total_steps);
|
||||||
|
|
||||||
*called = 1;
|
*called = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user