diff options
| author | Jameson Miller <jamill@microsoft.com> | 2013-10-02 15:39:18 -0400 |
|---|---|---|
| committer | Jameson Miller <jamill@microsoft.com> | 2013-10-03 09:51:21 -0400 |
| commit | 7baa7631eab48fba1427b0c7b4b109da09dd050b (patch) | |
| tree | 2cfe54199485e6d89444d5f129cc51a323091a0e /tests-clar | |
| parent | 83db7e09e2e9e81668704c21be26c917dea18fbd (diff) | |
| download | libgit2-7baa7631eab48fba1427b0c7b4b109da09dd050b.tar.gz | |
Style tweaks and changes for code review feedback
Diffstat (limited to 'tests-clar')
| -rw-r--r-- | tests-clar/online/push.c | 2 |
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; } |
