diff options
Diffstat (limited to 'protocols/Yahoo/src/http_gateway.cpp')
-rw-r--r-- | protocols/Yahoo/src/http_gateway.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Yahoo/src/http_gateway.cpp b/protocols/Yahoo/src/http_gateway.cpp index e62219f108..188d0a36ad 100644 --- a/protocols/Yahoo/src/http_gateway.cpp +++ b/protocols/Yahoo/src/http_gateway.cpp @@ -42,7 +42,7 @@ int YAHOO_httpGatewayWrapSend(HANDLE hConn, PBYTE buf, int len, int flags, MIRAN if (z != NULL) {
DebugLog("YAHOO_httpGatewayWrapSend!!! Got Len: %d", n);
NETLIBBUFFER tBuf = { ( char* )z, n, flags };
- ret = pfnNetlibSend(( LPARAM )hConn, (WPARAM) &tBuf );
+ ret = pfnNetlibSend((LPARAM)hConn, (WPARAM) &tBuf );
FREE(z);
} else {
DebugLog("YAHOO_httpGatewayWrapSend!!! GOT NULL???");
@@ -52,7 +52,7 @@ int YAHOO_httpGatewayWrapSend(HANDLE hConn, PBYTE buf, int len, int flags, MIRAN } else {
NETLIBBUFFER tBuf = { ( char* )buf, len, flags };
- return pfnNetlibSend(( LPARAM )hConn, (WPARAM) &tBuf );
+ return pfnNetlibSend((LPARAM)hConn, (WPARAM) &tBuf );
}
}
|