http://git.etherboot.org
/
people
/
xl0
/
gpxe.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c3b4e5
)
Engage brain: since when was zero >= 0x80 ?
author
Michael Brown
<mcb30@etherboot.org>
Thu, 21 Dec 2006 05:15:26 +0000
(
05:15
+0000)
committer
Michael Brown
<mcb30@etherboot.org>
Thu, 21 Dec 2006 05:15:26 +0000
(
05:15
+0000)
src/arch/i386/firmware/pcbios/bios_console.c
patch
|
blob
|
history
diff --git
a/src/arch/i386/firmware/pcbios/bios_console.c
b/src/arch/i386/firmware/pcbios/bios_console.c
index
f6867ed
..
9ad0a72
100644
(file)
--- a/
src/arch/i386/firmware/pcbios/bios_console.c
+++ b/
src/arch/i386/firmware/pcbios/bios_console.c
@@
-249,7
+249,7
@@
static int bios_getchar ( void ) {
character = ( keypress & 0xff );
/* If it's a normal character, just return it */
- if ( character
< 0x80
)
+ if ( character
&& ( character < 0x80 )
)
return character;
/* Otherwise, check for a special key that we know about */