From 96406152d980083992d002f9472e50cddd6e6723 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 18 Oct 2011 14:37:47 +0000 Subject: =?UTF-8?q?2011-10-18=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libcsupport/include/rtems/libio.h, libcsupport/src/termios.c: Use size_t for sizes. --- cpukit/libcsupport/include/rtems/libio.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/libcsupport/include/rtems/libio.h') diff --git a/cpukit/libcsupport/include/rtems/libio.h b/cpukit/libcsupport/include/rtems/libio.h index 2538b9fe84..07dfd1dd30 100644 --- a/cpukit/libcsupport/include/rtems/libio.h +++ b/cpukit/libcsupport/include/rtems/libio.h @@ -1617,9 +1617,9 @@ void rtems_termios_initialize (void); * is open, close then open it again. */ rtems_status_code rtems_termios_bufsize ( - int cbufsize, /* cooked buffer size */ - int raw_input, /* raw input buffer size */ - int raw_output /* raw output buffer size */ + size_t cbufsize, /* cooked buffer size */ + size_t raw_input, /* raw input buffer size */ + size_t raw_output /* raw output buffer size */ ); rtems_status_code rtems_termios_open ( -- cgit v1.2.3