aboutsummaryrefslogtreecommitdiff
path: root/sys/boot
diff options
context:
space:
mode:
authorKazutaka YOKOTA <yokota@FreeBSD.org>2001-10-02 09:13:07 +0000
committerKazutaka YOKOTA <yokota@FreeBSD.org>2001-10-02 09:13:07 +0000
commit4238458ba24305d2804cf796623682861881437d (patch)
tree9653162841a1b2a4c57c10ca0e5262c77369d7b9 /sys/boot
parenta17d5ec55d318941a27c026273e0c64e179e9e07 (diff)
Notes
Diffstat (limited to 'sys/boot')
-rw-r--r--sys/boot/i386/libi386/vidconsole.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/i386/libi386/vidconsole.c b/sys/boot/i386/libi386/vidconsole.c
index bfdb5c1136b4..8ae77ebe0534 100644
--- a/sys/boot/i386/libi386/vidconsole.c
+++ b/sys/boot/i386/libi386/vidconsole.c
@@ -227,7 +227,7 @@ curs_move(int x, int y)
v86.eax = 0x0800;
v86.ebx = 0x0;
v86int();
-#define isvisible(c) (((c) > 32) && ((c) < 255))
+#define isvisible(c) (((c) >= 32) && ((c) < 255))
if (!isvisible(v86.eax & 0x00ff)) {
write_char(' ', fg_c, bg_c);
}