Commit e60c8665 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

server: Cast-qual warning fix.

parent 5fd3c4ad
......@@ -272,7 +272,7 @@ static int suspend_for_ptrace( struct thread *thread )
}
/* read an int from a thread address space */
static int read_thread_int( struct thread *thread, const int *addr, int *data )
static int read_thread_int( struct thread *thread, int *addr, int *data )
{
errno = 0;
*data = ptrace( PTRACE_PEEKDATA, get_ptrace_pid(thread), (caddr_t)addr, 0 );
......
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