aboutsummaryrefslogtreecommitdiffstats
path: root/demos/PPC-SPC563-GCC/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/PPC-SPC563-GCC/main.c')
-rw-r--r--demos/PPC-SPC563-GCC/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/demos/PPC-SPC563-GCC/main.c b/demos/PPC-SPC563-GCC/main.c
index b846fb405..f2101c130 100644
--- a/demos/PPC-SPC563-GCC/main.c
+++ b/demos/PPC-SPC563-GCC/main.c
@@ -72,8 +72,9 @@ static void cmd_threads(BaseChannel *chp, int argc, char *argv[]) {
shellPrintLine(chp, " addr stack prio refs state time");
tp = chRegFirstThread();
do {
- siprintf(buf, "%8p %8p %4u %4i %9s %u",
- tp, tp->p_ctx.sp, (unsigned int)tp->p_prio, tp->p_refs - 1,
+ siprintf(buf, "%8lx %8lx %4u %4i %9s %u",
+ (uint32_t)tp, (uint32_t)tp->p_ctx.sp,
+ (unsigned int)tp->p_prio, tp->p_refs - 1,
states[tp->p_state], (unsigned int)tp->p_time);
shellPrintLine(chp, buf);
tp = chRegNextThread(tp);