diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1996-12-16 00:11:59 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1996-12-16 00:11:59 +0000 |
commit | 552dc8411e376c18560aef29fb764992a36a8727 (patch) | |
tree | 67aca7b3ea0d6591a59578bb0330fe1c3d887286 /sys/dev/ic/z8530tty.c | |
parent | d4e3d326d83fd256b3bbe4ee946dd8f88624d842 (diff) |
add "return (0)" to end of zsstop() since it's not a void function anymore
Diffstat (limited to 'sys/dev/ic/z8530tty.c')
-rw-r--r-- | sys/dev/ic/z8530tty.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); } /* |