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/i386/rdbg_f.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'c/src/librdbg/src/i386/rdbg_f.c') diff --git a/c/src/librdbg/src/i386/rdbg_f.c b/c/src/librdbg/src/i386/rdbg_f.c index e903309578..56f7769fe2 100644 --- a/c/src/librdbg/src/i386/rdbg_f.c +++ b/c/src/librdbg/src/i386/rdbg_f.c @@ -63,8 +63,8 @@ get_ctx_thread (Thread_Control * thread, CPU_Exception_frame * ctx) { ctx->edi = thread->Registers.edi; ctx->esi = thread->Registers.esi; - ctx->ebp = (unsigned32) (thread->Registers.ebp); - ctx->esp0 = (unsigned32) (thread->Registers.esp); + ctx->ebp = (uint32_t) (thread->Registers.ebp); + ctx->esp0 = (uint32_t) (thread->Registers.esp); ctx->ebx = thread->Registers.ebx; ctx->edx = 0; ctx->ecx = 0; -- cgit v1.2.3