summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/writev.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-11-29 13:35:32 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-11-29 13:35:32 +0000
commit18daff9b95bbe4d5004a99079207a5343760ecd3 (patch)
treeb964869a341cda8ab268ae3643ea9be3ed1a78f4 /cpukit/libcsupport/src/writev.c
parentWhitespace removal. (diff)
downloadrtems-18daff9b95bbe4d5004a99079207a5343760ecd3.tar.bz2
Whitespace removal.
Diffstat (limited to 'cpukit/libcsupport/src/writev.c')
-rw-r--r--cpukit/libcsupport/src/writev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libcsupport/src/writev.c b/cpukit/libcsupport/src/writev.c
index 88d495da56..a453209d87 100644
--- a/cpukit/libcsupport/src/writev.c
+++ b/cpukit/libcsupport/src/writev.c
@@ -60,7 +60,7 @@ ssize_t writev(
/*
* OpenGroup says that you are supposed to return EINVAL if the
- * sum of the iov_len values in the iov array would overflow a
+ * sum of the iov_len values in the iov array would overflow a
* ssize_t.
*
* Also we would like to ensure that no IO is performed if there
@@ -84,7 +84,7 @@ ssize_t writev(
if ( iov[v].iov_len )
all_zeros = false;
-
+
/* check for wrap */
old = total;
total += iov[v].iov_len;
@@ -98,7 +98,7 @@ ssize_t writev(
if ( all_zeros == true ) {
return 0;
}
-
+
/*
* Now process the writev().
*/