mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
2005-05-10 Ralf Corsepius <ralf.corsepius@rtems.org>
* console/console.c: Eliminate unsigned8.
This commit is contained in:
@@ -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.
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user