Commit 1275de53 by Carlos Martín Nieto

Merge pull request #3088 from volftomas/patch-1

Fixed unused warning in tests/rebase/merge.c
parents 891cc504 cf2380a6
......@@ -517,6 +517,11 @@ void rebase_checkout_progress_cb(
void *payload)
{
int *called = payload;
GIT_UNUSED(path);
GIT_UNUSED(completed_steps);
GIT_UNUSED(total_steps);
*called = 1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment