summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/libio.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/libio.c
parentWhitespace removal. (diff)
downloadrtems-18daff9b95bbe4d5004a99079207a5343760ecd3.tar.bz2
Whitespace removal.
Diffstat (limited to 'cpukit/libcsupport/src/libio.c')
-rw-r--r--cpukit/libcsupport/src/libio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libcsupport/src/libio.c b/cpukit/libcsupport/src/libio.c
index d2fa1da238..6ae05e18a6 100644
--- a/cpukit/libcsupport/src/libio.c
+++ b/cpukit/libcsupport/src/libio.c
@@ -26,9 +26,9 @@
#include <assert.h>
#include <errno.h>
-/* define this to alias O_NDELAY to O_NONBLOCK, i.e.,
+/* define this to alias O_NDELAY to O_NONBLOCK, i.e.,
* O_NDELAY is accepted on input but fcntl(F_GETFL) returns
- * O_NONBLOCK. This is because rtems has no distinction
+ * O_NONBLOCK. This is because rtems has no distinction
* between the two (but some systems have).
* Note that accepting this alias creates a problem:
* an application trying to clear the non-blocking flag
@@ -165,7 +165,7 @@ rtems_libio_t *rtems_libio_allocate( void )
goto failed;
iop = rtems_libio_iop_freelist;
next = iop->data1;
- (void) memset( iop, 0, sizeof(rtems_libio_t) );
+ (void) memset( iop, 0, sizeof(rtems_libio_t) );
iop->flags = LIBIO_FLAGS_OPEN;
iop->sem = sema;
rtems_libio_iop_freelist = next;