aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/linux-gnu/m68k
diff options
context:
space:
mode:
authorJuan Cespedes <cespedes@debian.org>2004-07-07 10:47:50 +0200
committerJuan Cespedes <cespedes@debian.org>2004-07-07 10:47:50 +0200
commit948a5d077939939dc086c0d0d199ff2f22706eea (patch)
tree4bd7859c9d4cfbc6c0ee3eb139f5b6dcdbda7e9c /sysdeps/linux-gnu/m68k
parent5c3fe0697b202cc7d95e90459de0fb312b297b27 (diff)
downloadltrace-948a5d077939939dc086c0d0d199ff2f22706eea.tar.gz
Version 0.3.34
* Fixed prototype declaration problem in arm, m68k, powerpc, s390 * Added "amd64" to list of architectures (closes: Bug#252756) * Sparc port is hopefully working (closes: Bug#35524)
Diffstat (limited to 'sysdeps/linux-gnu/m68k')
-rw-r--r--sysdeps/linux-gnu/m68k/regs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/linux-gnu/m68k/regs.c b/sysdeps/linux-gnu/m68k/regs.c
index 183862b..5c6c014 100644
--- a/sysdeps/linux-gnu/m68k/regs.c
+++ b/sysdeps/linux-gnu/m68k/regs.c
@@ -22,7 +22,7 @@ get_instruction_pointer(struct process * proc) {
}
void
-set_instruction_pointer(struct process * proc, long addr) {
+set_instruction_pointer(struct process * proc, void * addr) {
ptrace(PTRACE_POKEUSER, proc->pid, 4*PT_PC, addr);
}