summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2006-08-31 21:39:40 -0700
committerH. Peter Anvin <hpa@zytor.com>2006-08-31 21:39:40 -0700
commit8aea55ccc1e7835559b7ac54dcb4d082f14211b4 (patch)
tree97f82cf45eac099c79b6957823520400d79f2b9a
parentcce34512a098159fc6e55509dd1633baa1c0b60e (diff)
downloadsyslinux-8aea55ccc1e7835559b7ac54dcb4d082f14211b4.tar.gz
Whitespace cleanup
-rw-r--r--com32/lib/sys/ansicon_write.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/com32/lib/sys/ansicon_write.c b/com32/lib/sys/ansicon_write.c
index 89e6c4cb..29f9d838 100644
--- a/com32/lib/sys/ansicon_write.c
+++ b/com32/lib/sys/ansicon_write.c
@@ -114,18 +114,18 @@ int __ansicon_open(struct file_info *fp)
if (!ansicon_counter) {
/* Initial state */
memcpy(&st, &default_state, sizeof st);
-
+
/* Are we disabled? */
ireg.eax.w[0] = 0x000b;
__intcall(0x22, &ireg, &oreg);
-
+
if ( (signed char)oreg.ebx.b[1] < 0 ) {
st.disabled = 1;
} else {
/* Force text mode */
ireg.eax.w[0] = 0x0005;
__intcall(0x22, &ireg, NULL);
-
+
/* Get cursor shape */
ireg.eax.b[1] = 0x03;
ireg.ebx.b[1] = BIOS_PAGE;