Changeset de1d716 in rtems
- Timestamp:
- 04/07/97 21:27:59 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 318976f
- Parents:
- 2938c1a3
- Location:
- c/src/lib/libbsp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/mips/p4000/console/console.c
r2938c1a3 rde1d716 31 31 32 32 33 #ifndef lint 34 static char _sccsid[] = "@(#)console.c 08/20/96 1.6\n"; 35 #endif 33 /* 34 * Rather than deleting this, it is commented out to (hopefully) help 35 * the submitter send updates. 36 * 37 * static char _sccsid[] = "@(#)console.c 08/20/96 1.6\n"; 38 */ 39 36 40 37 41 … … 150 154 cur_led = 0; 151 155 } 152 else if ( isalnum( ch ) && cur_led < NUM_LEDS )156 else if ( isalnum( (unsigned char) ch ) && cur_led < NUM_LEDS ) 153 157 { 154 158 led_chars[cur_led++] = ch; … … 158 162 159 163 164 #if 0 160 165 static int console_fd = -1; 166 #endif 161 167 162 168 /* -
c/src/lib/libbsp/mips64orion/p4000/console/console.c
r2938c1a3 rde1d716 31 31 32 32 33 #ifndef lint 34 static char _sccsid[] = "@(#)console.c 08/20/96 1.6\n"; 35 #endif 33 /* 34 * Rather than deleting this, it is commented out to (hopefully) help 35 * the submitter send updates. 36 * 37 * static char _sccsid[] = "@(#)console.c 08/20/96 1.6\n"; 38 */ 39 36 40 37 41 … … 150 154 cur_led = 0; 151 155 } 152 else if ( isalnum( ch ) && cur_led < NUM_LEDS )156 else if ( isalnum( (unsigned char) ch ) && cur_led < NUM_LEDS ) 153 157 { 154 158 led_chars[cur_led++] = ch; … … 158 162 159 163 164 #if 0 160 165 static int console_fd = -1; 166 #endif 161 167 162 168 /*
Note: See TracChangeset
for help on using the changeset viewer.