diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-07-25 03:50:57 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-07-25 03:50:57 +0000 |
commit | b2f361b9902afc9eb0361af19bbaea3ac700a80d (patch) | |
tree | fade003ea860a3795a40263ff7e2685eaab41164 /sys/dev | |
parent | d2b9785bf79e0ee47c0dac9e8aadde8c08222f62 (diff) |
remove extra arg to printf
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/sbus/if_le_lebuffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sbus/if_le_lebuffer.c b/sys/dev/sbus/if_le_lebuffer.c index e3c85a41ad9..36f89869228 100644 --- a/sys/dev/sbus/if_le_lebuffer.c +++ b/sys/dev/sbus/if_le_lebuffer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_le_lebuffer.c,v 1.4 2003/07/07 15:37:07 jason Exp $ */ +/* $OpenBSD: if_le_lebuffer.c,v 1.5 2003/07/25 03:50:56 jason Exp $ */ /* $NetBSD: if_le_lebuffer.c,v 1.10 2002/03/11 16:00:56 pk Exp $ */ /*- @@ -155,7 +155,7 @@ leattach_lebuffer(struct device *parent, struct device *self, void *aux) if (sbus_bus_map(sa->sa_bustag, sa->sa_slot, sa->sa_offset, sa->sa_size, 0, 0, &lesc->sc_reg)) { - printf(": cannot map registers\n", self->dv_xname); + printf(": cannot map registers\n"); return; } |