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

dbgeng: Use correct integral type.

parent f44f3c23
......@@ -81,7 +81,7 @@ static struct target_process *debug_client_get_target(struct debug_client *debug
}
static HRESULT debug_target_return_string(const char *str, char *buffer, unsigned int buffer_size,
unsigned int *size)
ULONG *size)
{
unsigned int len = strlen(str), dst_len;
......@@ -1877,7 +1877,8 @@ static HRESULT STDMETHODCALLTYPE debugsymbols_GetModuleVersionInformation(IDebug
struct target_process *target;
void *version_info, *ptr;
HRESULT hr = E_FAIL;
DWORD handle, size;
DWORD handle;
UINT size;
TRACE("%p, %u, %s, %s, %p, %u, %p.\n", iface, index, wine_dbgstr_longlong(base), debugstr_a(item), buffer,
buffer_size, info_size);
......
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