summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2005-11-30 17:39:46 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2005-11-30 17:39:46 +0000
commit93794f065a510720f82df622ed47b8818dce884d (patch)
treef3c0c1b247c0eaa5c00abd0984d248fff6c30dc6
parent797ffd8c007bfc1e867da0c8b51e9303a02f6178 (diff)
format string mishandling
-rw-r--r--sys/arch/i386/i386/esm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/esm.c b/sys/arch/i386/i386/esm.c
index 075e121e40b..ded8277f294 100644
--- a/sys/arch/i386/i386/esm.c
+++ b/sys/arch/i386/i386/esm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: esm.c,v 1.24 2005/11/30 15:46:32 dlg Exp $ */
+/* $OpenBSD: esm.c,v 1.25 2005/11/30 17:39:45 deraadt Exp $ */
/*
* Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org>
@@ -244,7 +244,7 @@ esm_attach(struct device *parent, struct device *self, void *aux)
/* see if card is alive */
if (esm_bmc_ready(sc, ESM2_CTRL_REG, ESM2_TC_ECBUSY, 0, 1) != 0) {
- printf("%s: card is not alive\n");
+ printf(": card is not alive\n");
bus_space_unmap(sc->sc_iot, sc->sc_ioh, 8);
return;
}