|
|
@ -48,7 +48,7 @@ TR_protoCreateRequest(void * _this, TR_Socket remote, ...) |
|
|
va_list params; |
|
|
va_list params; |
|
|
|
|
|
|
|
|
va_start(params, remote); |
|
|
va_start(params, remote); |
|
|
TR_RETCALL(_this, TR_Protocol, createRequest, callret, params); |
|
|
|
|
|
|
|
|
TR_RETCALL(_this, TR_Protocol, createRequest, callret, ¶ms); |
|
|
if (callret != NULL) { |
|
|
if (callret != NULL) { |
|
|
callret->remote = remote; |
|
|
callret->remote = remote; |
|
|
} |
|
|
} |
|
|
@ -64,7 +64,7 @@ TR_protoCreateResponse(void * _this, TR_Socket remote, ...) |
|
|
va_list params; |
|
|
va_list params; |
|
|
|
|
|
|
|
|
va_start(params, remote); |
|
|
va_start(params, remote); |
|
|
TR_RETCALL(_this, TR_Protocol, createResponse, callret, params); |
|
|
|
|
|
|
|
|
TR_RETCALL(_this, TR_Protocol, createResponse, callret, ¶ms); |
|
|
if (callret != NULL) { |
|
|
if (callret != NULL) { |
|
|
callret->remote = remote; |
|
|
callret->remote = remote; |
|
|
} |
|
|
} |
|
|
|