From e02bfe21abe8469c21fe7a728786c4f523446b91 Mon Sep 17 00:00:00 2001 From: Jennifer Averett Date: Mon, 15 Sep 2003 18:45:24 +0000 Subject: 2003-09-15 Jennifer Averett * psxhdrs/sync01.c, psxhdrs/sync02.c: Correct fd creation --- c/src/tests/psxtests/ChangeLog | 4 ++++ c/src/tests/psxtests/psxhdrs/sync01.c | 2 +- c/src/tests/psxtests/psxhdrs/sync02.c | 2 +- testsuites/psxtests/ChangeLog | 4 ++++ testsuites/psxtests/psxhdrs/sync01.c | 2 +- testsuites/psxtests/psxhdrs/sync02.c | 2 +- 6 files changed, 12 insertions(+), 4 deletions(-) diff --git a/c/src/tests/psxtests/ChangeLog b/c/src/tests/psxtests/ChangeLog index ec2235326f..421dd1c929 100644 --- a/c/src/tests/psxtests/ChangeLog +++ b/c/src/tests/psxtests/ChangeLog @@ -1,3 +1,7 @@ +2003-09-15 Jennifer Averett + + * psxhdrs/sync01.c, psxhdrs/sync02.c: Correct fd creation + 2003-09-04 Joel Sherrill * psx01/init.c, psx01/system.h, psx01/task.c, psx02/init.c, diff --git a/c/src/tests/psxtests/psxhdrs/sync01.c b/c/src/tests/psxtests/psxhdrs/sync01.c index 2c651fce58..7ebb18509c 100644 --- a/c/src/tests/psxtests/psxhdrs/sync01.c +++ b/c/src/tests/psxtests/psxhdrs/sync01.c @@ -19,6 +19,6 @@ void test( void ) int fd; int result; - int fd = 4; + fd = 4; result = fsync( fd ); } diff --git a/c/src/tests/psxtests/psxhdrs/sync02.c b/c/src/tests/psxtests/psxhdrs/sync02.c index d5069777fe..425feb10fd 100644 --- a/c/src/tests/psxtests/psxhdrs/sync02.c +++ b/c/src/tests/psxtests/psxhdrs/sync02.c @@ -19,6 +19,6 @@ void test( void ) int fd; int result; - int fd = 4; + fd = 4; result = fdatasync( fd ); } diff --git a/testsuites/psxtests/ChangeLog b/testsuites/psxtests/ChangeLog index ec2235326f..421dd1c929 100644 --- a/testsuites/psxtests/ChangeLog +++ b/testsuites/psxtests/ChangeLog @@ -1,3 +1,7 @@ +2003-09-15 Jennifer Averett + + * psxhdrs/sync01.c, psxhdrs/sync02.c: Correct fd creation + 2003-09-04 Joel Sherrill * psx01/init.c, psx01/system.h, psx01/task.c, psx02/init.c, diff --git a/testsuites/psxtests/psxhdrs/sync01.c b/testsuites/psxtests/psxhdrs/sync01.c index 2c651fce58..7ebb18509c 100644 --- a/testsuites/psxtests/psxhdrs/sync01.c +++ b/testsuites/psxtests/psxhdrs/sync01.c @@ -19,6 +19,6 @@ void test( void ) int fd; int result; - int fd = 4; + fd = 4; result = fsync( fd ); } diff --git a/testsuites/psxtests/psxhdrs/sync02.c b/testsuites/psxtests/psxhdrs/sync02.c index d5069777fe..425feb10fd 100644 --- a/testsuites/psxtests/psxhdrs/sync02.c +++ b/testsuites/psxtests/psxhdrs/sync02.c @@ -19,6 +19,6 @@ void test( void ) int fd; int result; - int fd = 4; + fd = 4; result = fdatasync( fd ); } -- cgit v1.2.3