summaryrefslogtreecommitdiffstats
path: root/c/src/librdbg/src/i386/rdbg_f.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-10-21 13:48:49 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-10-21 13:48:49 +0000
commit1e006d5223f3b110d61366a13f37c08bf9db71a1 (patch)
tree0f407ead3d3668e0253484d305139e8ace206e29 /c/src/librdbg/src/i386/rdbg_f.c
parent2004-10-21 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-1e006d5223f3b110d61366a13f37c08bf9db71a1.tar.bz2
2004-10-21 Ralf Corsepius <ralf_corsepius@rtems.org>
* librdbg/src/i386/rdbg_f.c, librdbg/src/m68k/rdbg_cpu_asm.S librdbg/src/m68k/rdbg_f.c: Use POSIX fixed size types.
Diffstat (limited to '')
-rw-r--r--c/src/librdbg/src/i386/rdbg_f.c4
1 files changed, 2 insertions, 2 deletions
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;