summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-20 22:25:14 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-20 22:25:14 +0000
commit682a8ffad66fc82e350c1187eebca3d69ba19a68 (patch)
treebf7f406c46c639b6f88d749509dd43df55c6deab
parent2007-09-20 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-682a8ffad66fc82e350c1187eebca3d69ba19a68.tar.bz2
2007-09-20 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/read.c, libcsupport/src/write.c: Fix spacing.
Diffstat (limited to '')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/libcsupport/src/read.c2
-rw-r--r--cpukit/libcsupport/src/write.c2
3 files changed, 6 insertions, 2 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 1485afdeca..60f4ca547b 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2007-09-20 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * libcsupport/src/read.c, libcsupport/src/write.c: Fix spacing.
+
2007-09-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* posix/src/semaphorecreatesupp.c: Fixed warning.
diff --git a/cpukit/libcsupport/src/read.c b/cpukit/libcsupport/src/read.c
index 46f731e479..286edf3bab 100644
--- a/cpukit/libcsupport/src/read.c
+++ b/cpukit/libcsupport/src/read.c
@@ -29,7 +29,7 @@ ssize_t read(
rtems_libio_check_fd( fd );
iop = rtems_libio_iop( fd );
- rtems_libio_check_is_open(iop);
+ rtems_libio_check_is_open( iop );
rtems_libio_check_buffer( buffer );
rtems_libio_check_count( count );
rtems_libio_check_permissions( iop, LIBIO_FLAGS_READ );
diff --git a/cpukit/libcsupport/src/write.c b/cpukit/libcsupport/src/write.c
index 751aab33ed..3bda204015 100644
--- a/cpukit/libcsupport/src/write.c
+++ b/cpukit/libcsupport/src/write.c
@@ -36,7 +36,7 @@ ssize_t write(
rtems_libio_check_fd( fd );
iop = rtems_libio_iop( fd );
- rtems_libio_check_is_open(iop);
+ rtems_libio_check_is_open( iop );
rtems_libio_check_buffer( buffer );
rtems_libio_check_count( count );
rtems_libio_check_permissions( iop, LIBIO_FLAGS_WRITE );