add missing return value
authormillert <millert@openbsd.org>
Thu, 2 Mar 2000 21:55:41 +0000 (21:55 +0000)
committermillert <millert@openbsd.org>
Thu, 2 Mar 2000 21:55:41 +0000 (21:55 +0000)
usr.bin/mg/ttyio.c

index 31bc386..40136b4 100644 (file)
@@ -42,7 +42,7 @@ void panic __P((char *));
 int ttwait __P((void));
 
 /*
- * This function gets called once, to set up the terminal
+ * This function gets called once, to set up the terminal.
  * On systems w/o TCSASOFT we turn off off flow control,
  * which isn't really the right thing to do.
  */
@@ -91,6 +91,7 @@ ttraw()
                ewprintf("ttopen can't tcsetattr");
                return(FALSE);
        }
+       return(TRUE);
 }
 
 /*