diff options
author | Thomas Nordin <nordin@cvs.openbsd.org> | 2002-02-15 20:45:33 +0000 |
---|---|---|
committer | Thomas Nordin <nordin@cvs.openbsd.org> | 2002-02-15 20:45:33 +0000 |
commit | 80edccbe704914e50445ba06dae9916169da06df (patch) | |
tree | e583a7e97e91aee6d5d1098a86c0a7e7083bd388 /sys/arch/mvme68k | |
parent | 78c35609b8864cbec8390402ff594ea2b49873b2 (diff) |
Don't cast nonexistent return value from splx to (void). ok art@
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/dev/bugtty.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme68k/dev/cl.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme68k/dev/wl.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/mvme68k/dev/bugtty.c b/sys/arch/mvme68k/dev/bugtty.c index 15f3ee7265d..aa88ca53765 100644 --- a/sys/arch/mvme68k/dev/bugtty.c +++ b/sys/arch/mvme68k/dev/bugtty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bugtty.c,v 1.4 1996/06/11 10:17:29 deraadt Exp $ */ +/* $OpenBSD: bugtty.c,v 1.5 2002/02/15 20:45:30 nordin Exp $ */ /* * Copyright (c) 1995 Dale Rahn. @@ -144,7 +144,7 @@ bugttymctl(dev, bits, how) case DMGET: break; } - (void)splx(s); + splx(s); bits = 0; /* proper defaults? */ diff --git a/sys/arch/mvme68k/dev/cl.c b/sys/arch/mvme68k/dev/cl.c index 0e887d78b42..a84881a26a4 100644 --- a/sys/arch/mvme68k/dev/cl.c +++ b/sys/arch/mvme68k/dev/cl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cl.c,v 1.22 2001/06/27 05:44:47 nate Exp $ */ +/* $OpenBSD: cl.c,v 1.23 2002/02/15 20:45:30 nordin Exp $ */ /* * Copyright (c) 1995 Dale Rahn. All rights reserved. @@ -511,7 +511,7 @@ int clmctl (dev, bits, how) } break; } - (void)splx(s); + splx(s); #if 0 bits = 0; /* proper defaults? */ diff --git a/sys/arch/mvme68k/dev/wl.c b/sys/arch/mvme68k/dev/wl.c index 53a89050f72..dbfd421bf43 100644 --- a/sys/arch/mvme68k/dev/wl.c +++ b/sys/arch/mvme68k/dev/wl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wl.c,v 1.5 2001/06/27 05:44:48 nate Exp $ */ +/* $OpenBSD: wl.c,v 1.6 2002/02/15 20:45:30 nordin Exp $ */ /* * Copyright (c) 1995 Dale Rahn. All rights reserved. @@ -486,7 +486,7 @@ int clmctl (dev, bits, how) } break; } - (void)splx(s); + splx(s); #if 0 bits = 0; /* proper defaults? */ |