summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/string/strncpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxhdrs/string/strncpy.c')
-rw-r--r--testsuites/psxtests/psxhdrs/string/strncpy.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/testsuites/psxtests/psxhdrs/string/strncpy.c b/testsuites/psxtests/psxhdrs/string/strncpy.c
index 50b64b3d57..e80d6f6e64 100644
--- a/testsuites/psxtests/psxhdrs/string/strncpy.c
+++ b/testsuites/psxtests/psxhdrs/string/strncpy.c
@@ -35,16 +35,15 @@
#endif
#include <string.h>
-
int test( void );
int test( void )
{
- char *dest = "Hello";
- char *src = "World";
+ char src[] = "World";
+ char dest[ sizeof( src ) ];
char *result;
- result = strncpy( dest, src, 3 );
+ result = strncpy( dest, src, sizeof( dest ) );
return ( result != NULL );
}