From f62547d7227e8b467932b0f8d912c009bdb63344 Mon Sep 17 00:00:00 2001 From: kstailey Date: Mon, 16 Dec 1996 00:11:58 +0000 Subject: [PATCH] add "return (0)" to end of zsstop() since it's not a void function anymore --- sys/dev/ic/z8530tty.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/dev/ic/z8530tty.c b/sys/dev/ic/z8530tty.c index c768bad031d..3824b99e254 100644 --- a/sys/dev/ic/z8530tty.c +++ b/sys/dev/ic/z8530tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: z8530tty.c,v 1.8 1996/12/03 05:21:46 kstailey Exp $ */ +/* $OpenBSD: z8530tty.c,v 1.9 1996/12/16 00:11:58 kstailey Exp $ */ /* $NetBSD: z8530tty.c,v 1.13 1996/10/16 20:42:14 gwr Exp $ */ /* @@ -666,6 +666,7 @@ zsstop(tp, flag) tp->t_state |= TS_FLUSH; } splx(s); + return (0); } /* -- 2.20.1