Module Name: src
Committed By: gson
Date: Tue Dec 8 16:53:28 UTC 2015
Modified Files:
src/lib/libedit: tty.c
Log Message:
unbreak the build
To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/lib/libedit/tty.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libedit/tty.c
diff -u src/lib/libedit/tty.c:1.48 src/lib/libedit/tty.c:1.49
--- src/lib/libedit/tty.c:1.48 Tue Dec 8 12:57:16 2015
+++ src/lib/libedit/tty.c Tue Dec 8 16:53:27 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: tty.c,v 1.48 2015/12/08 12:57:16 christos Exp $ */
+/* $NetBSD: tty.c,v 1.49 2015/12/08 16:53:27 gson Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)tty.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: tty.c,v 1.48 2015/12/08 12:57:16 christos Exp $");
+__RCSID("$NetBSD: tty.c,v 1.49 2015/12/08 16:53:27 gson Exp $");
#endif
#endif /* not lint && not SCCSID */
@@ -581,7 +581,7 @@ protected void
tty_end(EditLine *el)
{
if (el->el_flags & EDIT_DISABLED)
- return 0;
+ return;
if (tty_setty(el, TCSAFLUSH, &el->el_tty.t_or) == -1) {
#ifdef DEBUG_TTY