diff options
Diffstat (limited to 'sys/dev/sbus/magma.c')
-rw-r--r-- | sys/dev/sbus/magma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sbus/magma.c b/sys/dev/sbus/magma.c index 0ecd08fef15..e6c11252067 100644 --- a/sys/dev/sbus/magma.c +++ b/sys/dev/sbus/magma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: magma.c,v 1.28 2018/02/19 08:59:52 mpi Exp $ */ +/* $OpenBSD: magma.c,v 1.29 2019/07/19 00:17:15 cheloha Exp $ */ /*- * Copyright (c) 1998 Iain Hibbert @@ -904,7 +904,7 @@ mttyopen(dev_t dev, int flags, int mode, struct proc *p) int error; SET(tp->t_state, TS_WOPEN); - error = ttysleep(tp, &tp->t_rawq, TTIPRI | PCATCH, "mttydcd", 0); + error = ttysleep(tp, &tp->t_rawq, TTIPRI | PCATCH, "mttydcd"); if (error != 0) { splx(s); CLR(tp->t_state, TS_WOPEN); |