From 2dce1200ccb84cff31ab964091091b4c93602985 Mon Sep 17 00:00:00 2001 From: martin Date: Wed, 13 Sep 2006 14:45:24 +0000 Subject: [PATCH] Avoid duplicate collon, from Stephan 'doomwarrior' in PR kern/34518 --- sys/dev/isapnp/ess_isapnp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/isapnp/ess_isapnp.c b/sys/dev/isapnp/ess_isapnp.c index 8e67f5f75563..cf52641be3a8 100644 --- a/sys/dev/isapnp/ess_isapnp.c +++ b/sys/dev/isapnp/ess_isapnp.c @@ -1,4 +1,4 @@ -/* $NetBSD: ess_isapnp.c,v 1.14 2006/03/29 06:51:47 thorpej Exp $ */ +/* $NetBSD: ess_isapnp.c,v 1.15 2006/09/13 14:45:24 martin Exp $ */ /* * Copyright (c) 1991-1993 Regents of the University of California. @@ -35,7 +35,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: ess_isapnp.c,v 1.14 2006/03/29 06:51:47 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ess_isapnp.c,v 1.15 2006/09/13 14:45:24 martin Exp $"); #include #include @@ -122,7 +122,7 @@ ess_isapnp_attach(struct device *parent, struct device *self, void *aux) return; } - printf("%s:", sc->sc_dev.dv_xname); + printf("%s", sc->sc_dev.dv_xname); essattach(sc, 0); }