Module: wine Branch: master Commit: b5a3848ee752d02c2534d6639526995ed07dd4d3 URL: https://source.winehq.org/git/wine.git/?a=commit;h=b5a3848ee752d02c2534d6639...
Author: Eric Pouech eric.pouech@gmail.com Date: Wed Jan 26 08:46:29 2022 +0100
rpcss: Use correct integral type.
Signed-off-by: Eric Pouech eric.pouech@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
programs/rpcss/rpcss_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/rpcss/rpcss_main.c b/programs/rpcss/rpcss_main.c index af055e6000a..99b4020882b 100644 --- a/programs/rpcss/rpcss_main.c +++ b/programs/rpcss/rpcss_main.c @@ -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;