summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/tests/psxtests/ChangeLog4
-rw-r--r--c/src/tests/psxtests/psxhdrs/sync01.c2
-rw-r--r--c/src/tests/psxtests/psxhdrs/sync02.c2
-rw-r--r--testsuites/psxtests/ChangeLog4
-rw-r--r--testsuites/psxtests/psxhdrs/sync01.c2
-rw-r--r--testsuites/psxtests/psxhdrs/sync02.c2
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 <jennifer@OARcorp.com>
+
+ * psxhdrs/sync01.c, psxhdrs/sync02.c: Correct fd creation
+
2003-09-04 Joel Sherrill <joel@OARcorp.com>
* 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 <jennifer@OARcorp.com>
+
+ * psxhdrs/sync01.c, psxhdrs/sync02.c: Correct fd creation
+
2003-09-04 Joel Sherrill <joel@OARcorp.com>
* 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 );
}