Commit 8600ba29 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedbg: Accept hex values in command line.

parent 3319526f
......@@ -667,7 +667,7 @@ static BOOL str2int(const char* str, DWORD_PTR* val)
{
char* ptr;
*val = strtol(str, &ptr, 10);
*val = strtol(str, &ptr, 0);
return str < ptr && !*ptr;
}
......
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