summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/shared/gdbstub/m68k-stub.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 04:56:43 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 04:56:43 +0000
commited9122e930d4bb9e285c76f6bda4d2a91ec541e6 (patch)
tree7bff041a32c79aa526f09218b16b6423b7a0d0fb /c/src/lib/libbsp/m68k/shared/gdbstub/m68k-stub.c
parent2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-ed9122e930d4bb9e285c76f6bda4d2a91ec541e6.tar.bz2
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* m68k-stub.c: Convert to using c99 fixed size types.
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?)*/