From 996c945e652010c096fb2bbe1904530abedcce84 Mon Sep 17 00:00:00 2001 From: mark Date: Mon, 10 Jan 2000 04:05:50 +0000 Subject: [PATCH] Add a several casts (mainly cosmetic). --- sys/arch/arm32/arm32/intr.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/arch/arm32/arm32/intr.c b/sys/arch/arm32/arm32/intr.c index d125479f56e0..2f725675f2b2 100644 --- a/sys/arch/arm32/arm32/intr.c +++ b/sys/arch/arm32/arm32/intr.c @@ -1,4 +1,4 @@ -/* $NetBSD: intr.c,v 1.15 1999/06/28 08:20:42 itojun Exp $ */ +/* $NetBSD: intr.c,v 1.16 2000/01/10 04:05:50 mark Exp $ */ /* * Copyright (c) 1994-1998 Mark Brinicombe. @@ -190,7 +190,7 @@ dosoftints() INC_SINTRCNT(SOFTIRQ_CLOCK); clearsoftintr(SOFTIRQ_BIT(SOFTIRQ_CLOCK)); softclock(); - splx(s); + (void)splx(s); } /* @@ -263,7 +263,7 @@ dosoftints() pppintr(); } #endif - splx(s); + (void)splx(s); } /* * Serial software interrupts @@ -277,7 +277,7 @@ dosoftints() #if NCOM > 0 comsoft(); #endif /* NCOM > 0 */ - splx(s); + (void)splx(s); } }