summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/pthread/pthread_mutexattr_getprotocol.c
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2022-06-20 12:04:43 +1000
committerChris Johns <chrisj@rtems.org>2022-06-21 10:21:13 +1000
commit6b2c5b5da1a0394c9ffa81fc55e73920be9f6bff (patch)
tree9009f1b3038a36ecd7c3ada3170c4603aca36d9d /testsuites/psxtests/psxhdrs/pthread/pthread_mutexattr_getprotocol.c
parentjffs2: Update baseline version to Linux v5.9 (diff)
downloadrtems-6b2c5b5da1a0394c9ffa81fc55e73920be9f6bff.tar.bz2
testsuite: Fix gcc 12 warnings
Diffstat (limited to 'testsuites/psxtests/psxhdrs/pthread/pthread_mutexattr_getprotocol.c')
-rw-r--r--testsuites/psxtests/psxhdrs/pthread/pthread_mutexattr_getprotocol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxhdrs/pthread/pthread_mutexattr_getprotocol.c b/testsuites/psxtests/psxhdrs/pthread/pthread_mutexattr_getprotocol.c
index 99cd093b17..da16c786b0 100644
--- a/testsuites/psxtests/psxhdrs/pthread/pthread_mutexattr_getprotocol.c
+++ b/testsuites/psxtests/psxhdrs/pthread/pthread_mutexattr_getprotocol.c
@@ -45,8 +45,8 @@ int test( void );
int test( void )
{
- pthread_mutexattr_t attribute;
- int protocol;
+ pthread_mutexattr_t attribute = { 0 };
+ int protocol = 0;
int result;
result = pthread_mutexattr_getprotocol( &attribute, &protocol );