2005-05-10 Ralf Corsepius <ralf.corsepius@rtems.org>

* console/console.c: Eliminate unsigned8.
This commit is contained in:
Ralf Corsepius
2005-05-10 06:33:35 +00:00
parent 9f8023a28a
commit a8b059cf03
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2005-05-10 Ralf Corsepius <ralf.corsepius@rtems.org>
* console/console.c: Eliminate unsigned8.
2005-04-26 Joel Sherrill <joel@OARcorp.com> 2005-04-26 Joel Sherrill <joel@OARcorp.com>
* startup/bspstart.c: Eliminate warnings. * startup/bspstart.c: Eliminate warnings.

View File

@@ -117,7 +117,7 @@ static rtems_status_code do_poll_read(
int c; int c;
while( (c = m5xx_uart_pollRead(minor)) == -1 ); while( (c = m5xx_uart_pollRead(minor)) == -1 );
rw_args->buffer[0] = (unsigned8)c; rw_args->buffer[0] = (uint8_t)c;
if( rw_args->buffer[0] == '\r' ) if( rw_args->buffer[0] == '\r' )
rw_args->buffer[0] = '\n'; rw_args->buffer[0] = '\n';
rw_args->bytes_moved = 1; rw_args->bytes_moved = 1;