changeset 109625:0447f8223078

Fix compilation error.
author Nick Roberts <nickrob@snap.net.nz>
date Thu, 05 Aug 2010 17:18:55 +1200
parents d06247ec7191
children 1d90000011f0
files src/sysdep.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/sysdep.c	Wed Aug 04 23:48:36 2010 +0200
+++ b/src/sysdep.c	Thu Aug 05 17:18:55 2010 +1200
@@ -522,7 +522,7 @@
 
   s.main.c_lflag |= ICANON;	/* Enable line editing and eof processing */
   s.main.c_cc[VEOF] = 'D'&037;	/* Control-D */
-#ifdef 0	    /* These settins only apply to non-ICANON mode. */
+#if 0	    /* These settings only apply to non-ICANON mode. */
   s.main.c_cc[VMIN] = 1;
   s.main.c_cc[VTIME] = 0;
 #endif