summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2005-05-06 15:29:57 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2005-05-06 15:29:57 +0000
commitabbec0ad3f4c203d94f4ca78b1e7780567b6b1ac (patch)
tree2b8d79ab92c2eda76d0adb523c4c58c19eb22ad7 /cpukit
parent2005-05-06 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-abbec0ad3f4c203d94f4ca78b1e7780567b6b1ac.tar.bz2
2005-05-06 Joel Sherrill <joel@OARcorp.com>
* libcsupport/src/termios.c: Removed warnings.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/libcsupport/src/termios.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index c11870c947..23727c5618 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,9 @@
2005-05-06 Joel Sherrill <joel@OARcorp.com>
+ * libcsupport/src/termios.c: Removed warnings.
+
+2005-05-06 Joel Sherrill <joel@OARcorp.com>
+
* libnetworking/net/if.h, libnetworking/net/if_ppp.c,
libnetworking/net/ppp_tty.c: Removed warnings.
diff --git a/cpukit/libcsupport/src/termios.c b/cpukit/libcsupport/src/termios.c
index deb231866b..4586654fdd 100644
--- a/cpukit/libcsupport/src/termios.c
+++ b/cpukit/libcsupport/src/termios.c
@@ -757,7 +757,7 @@ rtems_termios_write (void *arg)
}
if (tty->termios.c_oflag & OPOST) {
uint32_t count = args->count;
- uint8_t *buffer = args->buffer;
+ char *buffer = args->buffer;
while (count--)
oproc (*buffer++, tty);
args->bytes_moved = args->count;
@@ -1079,7 +1079,7 @@ rtems_termios_read (void *arg)
rtems_libio_rw_args_t *args = arg;
struct rtems_termios_tty *tty = args->iop->data1;
uint32_t count = args->count;
- uint8_t *buffer = args->buffer;
+ char *buffer = args->buffer;
rtems_status_code sc;
sc = rtems_semaphore_obtain (tty->isem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);