summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/shared/gdbstub/m68k-stub.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/m68k/shared/gdbstub/m68k-stub.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/c/src/lib/libbsp/m68k/shared/gdbstub/m68k-stub.c b/c/src/lib/libbsp/m68k/shared/gdbstub/m68k-stub.c
index f5f26246c4..3013cce702 100644
--- a/c/src/lib/libbsp/m68k/shared/gdbstub/m68k-stub.c
+++ b/c/src/lib/libbsp/m68k/shared/gdbstub/m68k-stub.c
@@ -1072,9 +1072,9 @@ void handle_exception(int exceptionVector)
{
if (remote_debug)
printf("frame at 0x%x has pc=0x%x, except#=%d\n",
- (unsigned32) frame,
- (unsigned32) frame->exceptionPC,
- (unsigned32) frame->exceptionVector);
+ (uint32_t) frame,
+ (uint32_t) frame->exceptionPC,
+ (uint32_t) frame->exceptionVector);
if (frame->exceptionPC == newPC) break; /* bingo! a match */
/*
* for a breakpoint instruction, the saved pc may
@@ -1113,7 +1113,7 @@ void handle_exception(int exceptionVector)
{
if (remote_debug)
printf("frame at 0x%x has pc=0x%x, except#=%d\n",
- (unsigned32) frame,
+ (uint32_t) frame,
frame->exceptionPC,
frame->exceptionVector);
/* re-use the last frame, we're skipping it (longjump?)*/