Fixed unused warning in tests/rebase/merge.c

This commit is contained in:
Tomas Paladin Volf 2015-04-30 14:17:05 +02:00
parent 891cc5045f
commit cf2380a623

View File

@ -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;
}