summaryrefslogtreecommitdiff
path: root/tests-clar
diff options
context:
space:
mode:
authorJameson Miller <jamill@microsoft.com>2013-10-02 15:39:18 -0400
committerJameson Miller <jamill@microsoft.com>2013-10-03 09:51:21 -0400
commit7baa7631eab48fba1427b0c7b4b109da09dd050b (patch)
tree2cfe54199485e6d89444d5f129cc51a323091a0e /tests-clar
parent83db7e09e2e9e81668704c21be26c917dea18fbd (diff)
downloadlibgit2-7baa7631eab48fba1427b0c7b4b109da09dd050b.tar.gz
Style tweaks and changes for code review feedback
Diffstat (limited to 'tests-clar')
-rw-r--r--tests-clar/online/push.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests-clar/online/push.c b/tests-clar/online/push.c
index cef39595c..4c2bec7ca 100644
--- a/tests-clar/online/push.c
+++ b/tests-clar/online/push.c
@@ -348,6 +348,7 @@ void test_online_push__cleanup(void)
static int push_pack_progress_cb(int stage, unsigned int current, unsigned int total, void* payload)
{
int *was_called = (int *) payload;
+ GIT_UNUSED(stage); GIT_UNUSED(current); GIT_UNUSED(total);
*was_called = 1;
return 0;
}
@@ -355,6 +356,7 @@ static int push_pack_progress_cb(int stage, unsigned int current, unsigned int t
static int push_transfer_progress_cb(unsigned int current, unsigned int total, size_t bytes, void* payload)
{
int *was_called = (int *) payload;
+ GIT_UNUSED(current); GIT_UNUSED(total); GIT_UNUSED(bytes);
*was_called = 1;
return 0;
}