From: Mike Gelfand Date: Thu, 8 Oct 2015 19:47:59 +0000 (+0000) Subject: Fix parameters order in `tr_web_done_func` declaration X-Git-Tag: 2.90~120 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e745408f3b186382eb112bbd0c8ed035eb870252;p=transmission Fix parameters order in `tr_web_done_func` declaration --- diff --git a/libtransmission/web.h b/libtransmission/web.h index 0e6b2284c..b920d99bd 100644 --- a/libtransmission/web.h +++ b/libtransmission/web.h @@ -37,8 +37,8 @@ tr_web_close_mode; void tr_webClose (tr_session * session, tr_web_close_mode close_mode); typedef void (*tr_web_done_func)(tr_session * session, - bool timeout_flag, bool did_connect_flag, + bool timeout_flag, long response_code, const void * response, size_t response_byte_count,