summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-06-07 16:26:10 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-06-07 17:02:24 +0200
commit1f3ce602f972896d3657d2bc2776561509135185 (patch)
tree70d7ae54ab1f923fe22d3c9e96a1810ce68e6ca0
parentnfsclient: Add rpcSetXIDs() (diff)
downloadrtems-1f3ce602f972896d3657d2bc2776561509135185.tar.bz2
termios: Fix warning
-rw-r--r--cpukit/libcsupport/src/termios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/termios.c b/cpukit/libcsupport/src/termios.c
index cd127f80fc..de852790a0 100644
--- a/cpukit/libcsupport/src/termios.c
+++ b/cpukit/libcsupport/src/termios.c
@@ -667,7 +667,7 @@ void
rtems_termios_puts (
const void *_buf, size_t len, struct rtems_termios_tty *tty)
{
- const unsigned char *buf = _buf;
+ const char *buf = _buf;
unsigned int newHead;
rtems_interrupt_level level;
rtems_status_code sc;