From bc2f07f331cefd5dff26fb8e68b97ad2aa14ba4c Mon Sep 17 00:00:00 2001 From: cgd Date: Wed, 10 Jul 1996 18:14:04 +0000 Subject: move DDB-only label inside an #ifdef, so that -Wall works --- sys/dev/ic/com.c | 4 +++- sys/dev/isa/com.c | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c index d9b909af112..384a14e5711 100644 --- a/sys/dev/ic/com.c +++ b/sys/dev/ic/com.c @@ -1,4 +1,4 @@ -/* $NetBSD: com.c,v 1.83 1996/05/30 18:24:09 cgd Exp $ */ +/* $NetBSD: com.c,v 1.84 1996/07/10 18:14:04 cgd Exp $ */ /*- * Copyright (c) 1993, 1994, 1995, 1996 @@ -1240,7 +1240,9 @@ comintr(arg) sc->sc_mcr); } } +#ifdef DDB next: +#endif #ifdef COM_DEBUG if (++n >= 32) goto ohfudge; diff --git a/sys/dev/isa/com.c b/sys/dev/isa/com.c index d9b909af112..384a14e5711 100644 --- a/sys/dev/isa/com.c +++ b/sys/dev/isa/com.c @@ -1,4 +1,4 @@ -/* $NetBSD: com.c,v 1.83 1996/05/30 18:24:09 cgd Exp $ */ +/* $NetBSD: com.c,v 1.84 1996/07/10 18:14:04 cgd Exp $ */ /*- * Copyright (c) 1993, 1994, 1995, 1996 @@ -1240,7 +1240,9 @@ comintr(arg) sc->sc_mcr); } } +#ifdef DDB next: +#endif #ifdef COM_DEBUG if (++n >= 32) goto ohfudge; -- cgit