combase: Use I64 width modifier for 64-bit integers.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a233c49519
commit
b7f839e583
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue