rpcss: Use correct integral type.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-01-26 08:46:29 +01:00 committed by Alexandre Julliard
parent 268ede1e62
commit b5a3848ee7
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ HRESULT __cdecl irpcss_server_register(handle_t h, const GUID *clsid, unsigned i
PMInterfacePointer object, unsigned int *cookie)
{
struct registered_class *entry;
static int next_cookie;
static LONG next_cookie;
if (!(entry = heap_alloc_zero(sizeof(*entry))))
return E_OUTOFMEMORY;