Commit b7f839e5 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

combase: Use I64 width modifier for 64-bit integers.

parent a233c495
......@@ -77,7 +77,7 @@ struct registered_if
static inline void get_rpc_endpoint(LPWSTR endpoint, const OXID *oxid)
{
/* FIXME: should get endpoint from rpcss */
wsprintfW(endpoint, L"\\pipe\\OLE_%08lx%08lx", (DWORD)(*oxid >> 32), (DWORD)*oxid);
wsprintfW(endpoint, L"\\pipe\\OLE_%016I64x", *oxid);
}
typedef struct
......
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