diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-04-06 13:38:28 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-04-06 13:38:28 -0700 |
| commit | 9bc647a2d177f0c70b7a39fe84a20349589dc9da (patch) | |
| tree | bbeeceec0031d6d92d4da1d2a4bcf645a053a917 /http-push.c | |
| parent | ae61aecb9e338ab02a7d3cced40135ab43880093 (diff) | |
| parent | b3edf335dfa978b43d10de7e722a7e355a3d0e4c (diff) | |
| download | git-9bc647a2d177f0c70b7a39fe84a20349589dc9da.tar.xz | |
Merge branch 'jk/unused-post-2.40'
More "-Wunused-parameters" code clean-up.
* jk/unused-post-2.40:
transport: mark unused parameters in fetch_refs_from_bundle()
http: mark unused parameter in fill_active_slot() callbacks
http: drop unused parameter from start_object_request()
mailmap: drop debugging code
Diffstat (limited to 'http-push.c')
| -rw-r--r-- | http-push.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http-push.c b/http-push.c index 88aa045ecb..2d01b430e7 100644 --- a/http-push.c +++ b/http-push.c @@ -602,7 +602,7 @@ static void finish_request(struct transfer_request *request) } static int is_running_queue; -static int fill_active_slot(void *unused) +static int fill_active_slot(void *data UNUSED) { struct transfer_request *request; |
