summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs
diff options
context:
space:
mode:
authorAschref Ben Thabet <aschref.ben-thabet@embedded-brains.de>2020-07-30 14:47:03 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-07-30 14:57:57 +0200
commit699f465c50ca3af004673c650f645f78d250624b (patch)
treef938ef3e94f1fca3df28efac0012b3d4df4a28c8 /testsuites/psxtests/psxhdrs
parenti386: Fix possible race condition on first context restore (diff)
downloadrtems-699f465c50ca3af004673c650f645f78d250624b.tar.bz2
psxhdrs/strncat: Fix string truncation warning
Diffstat (limited to 'testsuites/psxtests/psxhdrs')
-rw-r--r--testsuites/psxtests/psxhdrs/string/strncat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxhdrs/string/strncat.c b/testsuites/psxtests/psxhdrs/string/strncat.c
index 730a56cfa6..d872be3408 100644
--- a/testsuites/psxtests/psxhdrs/string/strncat.c
+++ b/testsuites/psxtests/psxhdrs/string/strncat.c
@@ -45,7 +45,7 @@
char buffer[SIZE] = "computer";
char *result;
- result = strncat( buffer, " program", 3 );
+ result = strncat( buffer, " program", sizeof( buffer ) - 1 );
return ( result != NULL );
}