Commit 477117a0 authored by Marcin Baczyński's avatar Marcin Baczyński Committed by Alexandre Julliard

winedbg: Remove superfluous void* cast.

parent 9e951e8d
......@@ -60,7 +60,7 @@ void break_set_xpoints(BOOL set)
size = 0;
else
size = bp[i].w.len + 1;
addr = (void*)memory_to_linear_addr(&bp[i].addr);
addr = memory_to_linear_addr(&bp[i].addr);
if (set)
ret = be_cpu->insert_Xpoint(dbg_curr_process->handle,
......
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