summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/arpa
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/arpa
parentjffs2: Update baseline version to Linux v5.9 (diff)
downloadrtems-6b2c5b5da1a0394c9ffa81fc55e73920be9f6bff.tar.bz2
testsuite: Fix gcc 12 warnings
Diffstat (limited to 'testsuites/psxtests/psxhdrs/arpa')
-rw-r--r--testsuites/psxtests/psxhdrs/arpa/inet/inet_ntop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxhdrs/arpa/inet/inet_ntop.c b/testsuites/psxtests/psxhdrs/arpa/inet/inet_ntop.c
index c3e3828b0b..5b64b565cc 100644
--- a/testsuites/psxtests/psxhdrs/arpa/inet/inet_ntop.c
+++ b/testsuites/psxtests/psxhdrs/arpa/inet/inet_ntop.c
@@ -32,7 +32,7 @@ int test(void);
int test(void)
{
int af = 0;
- struct in_addr addr;
+ struct in_addr addr = { 0 };
char *dst = "string";
const char *ret = inet_ntop(af, &addr, dst, sizeof(dst));