summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-08-06 07:44:23 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-08-06 07:44:23 +0000
commit39a056b8a1862ef6918057f2d181e7284dfbf8e7 (patch)
tree5f247b95d6961e561d258c0055b0542e6864e703 /testsuites/psxtests
parent2010-08-06 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-39a056b8a1862ef6918057f2d181e7284dfbf8e7.tar.bz2
2010-08-06 Ralf Corsépius <ralf.corsepius@rtems.org>
PR 1652/GCC: * psxpipe01/init.c: Expand incomplete initializers triggering powerpc-gcc -msdata breakdown.
Diffstat (limited to 'testsuites/psxtests')
-rw-r--r--testsuites/psxtests/psxpipe01/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxpipe01/init.c b/testsuites/psxtests/psxpipe01/init.c
index 9048553f2f..49d2e00fc2 100644
--- a/testsuites/psxtests/psxpipe01/init.c
+++ b/testsuites/psxtests/psxpipe01/init.c
@@ -25,8 +25,8 @@ rtems_task Init(
rtems_task_argument not_used
)
{
- int fd[2] = {0};
- int dummy_fd[2] = {0};
+ int fd[2] = {0,0};
+ int dummy_fd[2] = {0,0};
int status = 0;
void *alloc_ptr = (void *)0;
Heap_Information_block Info;