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

dbghelp: Use correct parameter name.

parent 7f2eb083
......@@ -487,13 +487,13 @@ struct enum_types_AtoW
PSYM_ENUMERATESYMBOLS_CALLBACKW callback;
};
static BOOL CALLBACK enum_types_AtoW(PSYMBOL_INFO si, ULONG addr, PVOID _et)
static BOOL CALLBACK enum_types_AtoW(PSYMBOL_INFO si, ULONG size, PVOID _et)
{
struct enum_types_AtoW* et = _et;
SYMBOL_INFOW* siW = (SYMBOL_INFOW*)et->buffer;
copy_symbolW(siW, si);
return et->callback(siW, addr, et->user);
return et->callback(siW, size, et->user);
}
/******************************************************************
......
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