summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxfatal_support
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-01-27 13:46:40 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-01-27 13:50:23 +0100
commit33bd2efbb2da8b1e8bd298417505e17ba1d191e5 (patch)
treed0bbc4a6dbdcb72f7fbd8ff1759d6a4e2c12fb53 /testsuites/psxtests/psxfatal_support
parenttestsuites: Use rtems_fatal_source_description() (diff)
downloadrtems-33bd2efbb2da8b1e8bd298417505e17ba1d191e5.tar.bz2
testsuites: Fix prototypes
Diffstat (limited to 'testsuites/psxtests/psxfatal_support')
-rw-r--r--testsuites/psxtests/psxfatal_support/init.c7
-rw-r--r--testsuites/psxtests/psxfatal_support/system.h6
2 files changed, 6 insertions, 7 deletions
diff --git a/testsuites/psxtests/psxfatal_support/init.c b/testsuites/psxtests/psxfatal_support/init.c
index 06c90a730d..93645e61ca 100644
--- a/testsuites/psxtests/psxfatal_support/init.c
+++ b/testsuites/psxtests/psxfatal_support/init.c
@@ -83,11 +83,10 @@ void Put_Source( rtems_fatal_source source )
printk( "%s", rtems_fatal_source_description( source ) );
}
-
void Fatal_extension(
- uint32_t source,
- bool is_internal,
- uint32_t error
+ rtems_fatal_source source,
+ bool is_internal,
+ rtems_fatal_code error
)
{
print_test_begin_message();
diff --git a/testsuites/psxtests/psxfatal_support/system.h b/testsuites/psxtests/psxfatal_support/system.h
index 42934745e6..e7ba4b12f7 100644
--- a/testsuites/psxtests/psxfatal_support/system.h
+++ b/testsuites/psxtests/psxfatal_support/system.h
@@ -36,9 +36,9 @@ void *POSIX_Init(
);
void Fatal_extension(
- uint32_t source,
- bool is_internal,
- uint32_t error
+ rtems_fatal_source source,
+ bool is_internal,
+ rtems_fatal_code error
);
/* need prototypes */