summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/libio.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-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;