From cc6ecc518bceaa07f19c970c33bc69655e02ddea Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 30 Oct 2009 13:13:00 +0000 Subject: [PATCH] Include "tmacros.h". Use PRIxrtems_signal_set to print rtems_signal_sets. --- testsuites/mptests/mp05/asr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testsuites/mptests/mp05/asr.c b/testsuites/mptests/mp05/asr.c index 18c0c2703d..c6715e0e01 100644 --- a/testsuites/mptests/mp05/asr.c +++ b/testsuites/mptests/mp05/asr.c @@ -19,6 +19,7 @@ */ #include "system.h" +#include "tmacros.h" rtems_asr Process_asr( rtems_signal_set signal @@ -26,7 +27,7 @@ rtems_asr Process_asr( { if ( signal != expected_signal ) { printf( - "ERROR: I was expecting signal 0x%.8x got 0x%.8x\n", + "ERROR: I was expecting signal 0x%.8" PRIxrtems_signal_set " got 0x%.8" PRIxrtems_signal_set "\n", expected_signal, signal );