summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/stdio/vprintf.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-12-11 09:30:59 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-12-11 09:42:17 +0100
commitb7a1f9efadd928cda0f56123a1b6245b30b076fc (patch)
tree9df76e7d9da5cfc9f554cd54bdf7654b0e04299c /testsuites/psxtests/psxhdrs/stdio/vprintf.c
parentRemove white space at end of line (diff)
downloadrtems-b7a1f9efadd928cda0f56123a1b6245b30b076fc.tar.bz2
psxhdrs: Fix compile errors
Diffstat (limited to 'testsuites/psxtests/psxhdrs/stdio/vprintf.c')
-rw-r--r--testsuites/psxtests/psxhdrs/stdio/vprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxhdrs/stdio/vprintf.c b/testsuites/psxtests/psxhdrs/stdio/vprintf.c
index d9bd53e99b..bbaa2921e9 100644
--- a/testsuites/psxtests/psxhdrs/stdio/vprintf.c
+++ b/testsuites/psxtests/psxhdrs/stdio/vprintf.c
@@ -30,10 +30,10 @@ int test( void );
int test( void )
{
- char *fmt1 = " %d %99s ";
+ va_list ap;
int result;
- result = vprintf( fmt1, NULL );
+ result = vprintf( " %d %99s ", ap );
return result;
}