summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-27 03:53:39 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-27 03:53:39 +0000
commit669ad957aecfef067f630ba4f18b1f51b16fcfc0 (patch)
treea16ca8ea08b5b679af7cb71f5e906c15f0030aad /testsuites/psxtests
parent2009-10-26 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-669ad957aecfef067f630ba4f18b1f51b16fcfc0.tar.bz2
Misc. warning fixes.
Diffstat (limited to 'testsuites/psxtests')
-rw-r--r--testsuites/psxtests/psx06/init.c2
-rw-r--r--testsuites/psxtests/psx06/system.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psx06/init.c b/testsuites/psxtests/psx06/init.c
index e22f93e57d..65094792b7 100644
--- a/testsuites/psxtests/psx06/init.c
+++ b/testsuites/psxtests/psx06/init.c
@@ -13,7 +13,7 @@
#include "system.h"
#include <errno.h>
-void Key_destructor( void *key_data );
+extern void Key_destructor( void *key_data );
void Key_destructor(
void *key_data
diff --git a/testsuites/psxtests/psx06/system.h b/testsuites/psxtests/psx06/system.h
index 6c81b1edc3..8f2c875bbc 100644
--- a/testsuites/psxtests/psx06/system.h
+++ b/testsuites/psxtests/psx06/system.h
@@ -54,6 +54,6 @@ TEST_EXTERN pthread_t Task_id;
TEST_EXTERN pthread_t Task2_id;
TEST_EXTERN pthread_key_t Key_id;
TEST_EXTERN uint32_t Data_array[ CONFIGURE_MAXIMUM_POSIX_THREADS ];
-TEST_EXTERN uint32_t Destructor_invoked;
+TEST_EXTERN unsigned int Destructor_invoked;
/* end of include file */