Commit 99ae980c authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

rpcrt4: Sign-compare warnings fix.

parent fa1e0313
...@@ -147,7 +147,7 @@ HRESULT WINAPI NdrDllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv, ...@@ -147,7 +147,7 @@ HRESULT WINAPI NdrDllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv,
*ppv = NULL; *ppv = NULL;
if (!pPSFactoryBuffer->lpVtbl) { if (!pPSFactoryBuffer->lpVtbl) {
const ProxyFileInfo **pProxyFileList2; const ProxyFileInfo **pProxyFileList2;
int max_delegating_vtbl_size = 0; DWORD max_delegating_vtbl_size = 0;
pPSFactoryBuffer->lpVtbl = &CStdPSFactory_Vtbl; pPSFactoryBuffer->lpVtbl = &CStdPSFactory_Vtbl;
pPSFactoryBuffer->RefCount = 0; pPSFactoryBuffer->RefCount = 0;
pPSFactoryBuffer->pProxyFileList = pProxyFileList; pPSFactoryBuffer->pProxyFileList = pProxyFileList;
...@@ -158,7 +158,7 @@ HRESULT WINAPI NdrDllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv, ...@@ -158,7 +158,7 @@ HRESULT WINAPI NdrDllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv,
* async interfaces */ * async interfaces */
void * const *pSrcRpcStubVtbl = (void * const *)&CStdStubBuffer_Vtbl; void * const *pSrcRpcStubVtbl = (void * const *)&CStdStubBuffer_Vtbl;
void **pRpcStubVtbl = (void **)&(*pProxyFileList2)->pStubVtblList[i]->Vtbl; void **pRpcStubVtbl = (void **)&(*pProxyFileList2)->pStubVtblList[i]->Vtbl;
int j; unsigned int j;
if ((*pProxyFileList2)->pDelegatedIIDs && (*pProxyFileList2)->pDelegatedIIDs[i]) { if ((*pProxyFileList2)->pDelegatedIIDs && (*pProxyFileList2)->pDelegatedIIDs[i]) {
pSrcRpcStubVtbl = (void * const *)&CStdStubBuffer_Delegating_Vtbl; pSrcRpcStubVtbl = (void * const *)&CStdStubBuffer_Delegating_Vtbl;
......
...@@ -111,7 +111,7 @@ int WINAPI NdrFullPointerQueryPointer(PFULL_PTR_XLAT_TABLES pXlatTables, ...@@ -111,7 +111,7 @@ int WINAPI NdrFullPointerQueryPointer(PFULL_PTR_XLAT_TABLES pXlatTables,
ULONG *pRefId ) ULONG *pRefId )
{ {
ULONG Hash = 0; ULONG Hash = 0;
int i; unsigned int i;
PFULL_PTR_TO_REFID_ELEMENT XlatTableEntry; PFULL_PTR_TO_REFID_ELEMENT XlatTableEntry;
TRACE("(%p, %p, %d, %p)\n", pXlatTables, pPointer, QueryType, pRefId); TRACE("(%p, %p, %d, %p)\n", pXlatTables, pPointer, QueryType, pRefId);
...@@ -186,7 +186,7 @@ void WINAPI NdrFullPointerInsertRefId(PFULL_PTR_XLAT_TABLES pXlatTables, ...@@ -186,7 +186,7 @@ void WINAPI NdrFullPointerInsertRefId(PFULL_PTR_XLAT_TABLES pXlatTables,
ULONG RefId, void *pPointer) ULONG RefId, void *pPointer)
{ {
ULONG Hash = 0; ULONG Hash = 0;
int i; unsigned int i;
PFULL_PTR_TO_REFID_ELEMENT XlatTableEntry; PFULL_PTR_TO_REFID_ELEMENT XlatTableEntry;
TRACE("(%p, 0x%x, %p)\n", pXlatTables, RefId, pPointer); TRACE("(%p, 0x%x, %p)\n", pXlatTables, RefId, pPointer);
...@@ -211,7 +211,7 @@ void WINAPI NdrFullPointerInsertRefId(PFULL_PTR_XLAT_TABLES pXlatTables, ...@@ -211,7 +211,7 @@ void WINAPI NdrFullPointerInsertRefId(PFULL_PTR_XLAT_TABLES pXlatTables,
int WINAPI NdrFullPointerFree(PFULL_PTR_XLAT_TABLES pXlatTables, void *Pointer) int WINAPI NdrFullPointerFree(PFULL_PTR_XLAT_TABLES pXlatTables, void *Pointer)
{ {
ULONG Hash = 0; ULONG Hash = 0;
int i; unsigned int i;
PFULL_PTR_TO_REFID_ELEMENT XlatTableEntry; PFULL_PTR_TO_REFID_ELEMENT XlatTableEntry;
ULONG RefId = 0; ULONG RefId = 0;
......
...@@ -1326,7 +1326,8 @@ static void rpcrt4_protseq_sock_free_wait_array(RpcServerProtseq *protseq, void ...@@ -1326,7 +1326,8 @@ static void rpcrt4_protseq_sock_free_wait_array(RpcServerProtseq *protseq, void
static int rpcrt4_protseq_sock_wait_for_new_connection(RpcServerProtseq *protseq, unsigned int count, void *wait_array) static int rpcrt4_protseq_sock_wait_for_new_connection(RpcServerProtseq *protseq, unsigned int count, void *wait_array)
{ {
struct pollfd *poll_info = wait_array; struct pollfd *poll_info = wait_array;
int ret, i; int ret;
unsigned int i;
RpcConnection *cconn; RpcConnection *cconn;
RpcConnection_tcp *conn; RpcConnection_tcp *conn;
...@@ -1451,7 +1452,7 @@ static const struct protseq_ops protseq_list[] = ...@@ -1451,7 +1452,7 @@ static const struct protseq_ops protseq_list[] =
const struct protseq_ops *rpcrt4_get_protseq_ops(const char *protseq) const struct protseq_ops *rpcrt4_get_protseq_ops(const char *protseq)
{ {
int i; unsigned int i;
for(i=0; i<ARRAYSIZE(protseq_list); i++) for(i=0; i<ARRAYSIZE(protseq_list); i++)
if (!strcmp(protseq_list[i].name, protseq)) if (!strcmp(protseq_list[i].name, protseq))
return &protseq_list[i]; return &protseq_list[i];
...@@ -1460,7 +1461,7 @@ const struct protseq_ops *rpcrt4_get_protseq_ops(const char *protseq) ...@@ -1460,7 +1461,7 @@ const struct protseq_ops *rpcrt4_get_protseq_ops(const char *protseq)
static const struct connection_ops *rpcrt4_get_conn_protseq_ops(const char *protseq) static const struct connection_ops *rpcrt4_get_conn_protseq_ops(const char *protseq)
{ {
int i; unsigned int i;
for(i=0; i<ARRAYSIZE(conn_protseq_list); i++) for(i=0; i<ARRAYSIZE(conn_protseq_list); i++)
if (!strcmp(conn_protseq_list[i].name, protseq)) if (!strcmp(conn_protseq_list[i].name, protseq))
return &conn_protseq_list[i]; return &conn_protseq_list[i];
...@@ -1614,7 +1615,7 @@ RPC_STATUS RpcTransport_ParseTopOfTower(const unsigned char *tower_data, ...@@ -1614,7 +1615,7 @@ RPC_STATUS RpcTransport_ParseTopOfTower(const unsigned char *tower_data,
const twr_empty_floor_t *floor4; const twr_empty_floor_t *floor4;
const struct connection_ops *protseq_ops = NULL; const struct connection_ops *protseq_ops = NULL;
RPC_STATUS status; RPC_STATUS status;
int i; unsigned int i;
if (tower_size < sizeof(*protocol_floor)) if (tower_size < sizeof(*protocol_floor))
return EPT_S_NOT_REGISTERED; return EPT_S_NOT_REGISTERED;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment