about summary refs log tree commit diff stats
path: root/src/UCAuto.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/UCAuto.c')
-rw-r--r--src/UCAuto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/UCAuto.c b/src/UCAuto.c
index 18eb4a97..67372d0b 100644
--- a/src/UCAuto.c
+++ b/src/UCAuto.c
@@ -1,5 +1,5 @@
 /*
- * $LynxId: UCAuto.c,v 1.39 2009/01/01 22:07:18 tom Exp $
+ * $LynxId: UCAuto.c,v 1.40 2010/04/25 20:16:41 tom Exp $
  *
  *  This file contains code for changing the Linux console mode.
  *  Currently some names for font files are hardwired in here.
@@ -198,7 +198,7 @@ static void write_esc(const char *p)
     int fd = open("/dev/tty", O_WRONLY);
 
     if (fd >= 0) {
-	write(fd, p, strlen(p));
+	IGNORE_RC(write(fd, p, strlen(p)));
 	close(fd);
     }
 }