Module: wine Branch: master Commit: e60c86657a59401e99d474ee571b707ef1a1e3f7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e60c86657a59401e99d474ee57...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Sat Oct 7 19:47:38 2006 +0100
server: Cast-qual warning fix.
---
server/ptrace.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/server/ptrace.c b/server/ptrace.c index 4de242f..ef72713 100644 --- a/server/ptrace.c +++ b/server/ptrace.c @@ -272,7 +272,7 @@ static int suspend_for_ptrace( struct th }
/* 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 );