summaryrefslogtreecommitdiffstats
path: root/c/src/librdbg/src/i386/rdbg_f.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/librdbg/src/i386/rdbg_f.c')
-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;