* sp09/screen02.c: Use integer value that fits into one character.
This commit is contained in:
Sebastian Huber
2011-04-15 13:21:09 +00:00
parent 15478c9520
commit 3f2af2f968
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -1,3 +1,7 @@
2011-04-15 Sebastian Huber <sebastian.huber@embedded-brains.de>
* sp09/screen02.c: Use integer value that fits into one character.
2011-04-04 Gedare Bloom <giddyup44@yahoo.com>
PR 1641/cpukit
+1 -1
View File
@@ -135,7 +135,7 @@ void Screen2()
puts( "TA1 - rtems_clock_get - RTEMS_INVALID_ADDRESS" );
/* arbitrary bad value for switch */
status = rtems_clock_get( 0x100, &tv );
status = rtems_clock_get( 0xff, &tv );
fatal_directive_status(
status,
RTEMS_INVALID_NUMBER,