From 1e006d5223f3b110d61366a13f37c08bf9db71a1 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 21 Oct 2004 13:48:49 +0000 Subject: 2004-10-21 Ralf Corsepius * librdbg/src/i386/rdbg_f.c, librdbg/src/m68k/rdbg_cpu_asm.S librdbg/src/m68k/rdbg_f.c: Use POSIX fixed size types. --- c/src/librdbg/src/m68k/rdbg_f.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'c/src/librdbg/src/m68k/rdbg_f.c') diff --git a/c/src/librdbg/src/m68k/rdbg_f.c b/c/src/librdbg/src/m68k/rdbg_f.c index a7b58a26c1..fd1416a6ec 100644 --- a/c/src/librdbg/src/m68k/rdbg_f.c +++ b/c/src/librdbg/src/m68k/rdbg_f.c @@ -87,18 +87,18 @@ get_ctx_thread (Thread_Control * thread, CPU_Exception_frame * ctx) */ ctx->vecnum = 0xdeadbeef; ctx->sr = thread->Registers.sr; - ctx->pc = *(unsigned32 *) thread->Registers.a7_msp; + ctx->pc = *(uint32_t *) thread->Registers.a7_msp; ctx->d0 = 0xdeadbeef; ctx->d1 = 0xdeadbeef; ctx->a0 = 0xdeadbeef; ctx->a1 = 0xdeadbeef; - ctx->a2 = (unsigned32) thread->Registers.a2; - ctx->a3 = (unsigned32) thread->Registers.a3; - ctx->a4 = (unsigned32) thread->Registers.a4; - ctx->a5 = (unsigned32) thread->Registers.a5; - ctx->a6 = (unsigned32) thread->Registers.a6; - ctx->a7 = (unsigned32) thread->Registers.a7_msp; + ctx->a2 = (uint32_t) thread->Registers.a2; + ctx->a3 = (uint32_t) thread->Registers.a3; + ctx->a4 = (uint32_t) thread->Registers.a4; + ctx->a5 = (uint32_t) thread->Registers.a5; + ctx->a6 = (uint32_t) thread->Registers.a6; + ctx->a7 = (uint32_t) thread->Registers.a7_msp; ctx->d2 = thread->Registers.d2; ctx->d3 = thread->Registers.d3; ctx->d4 = thread->Registers.d4; -- cgit v1.2.3