diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-12-12 08:56:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-12-12 08:56:12 +0000 |
commit | ecc85b9ac6a869962d2ceb3828a7657c8b829a76 (patch) | |
tree | e6aaee877953d721bc14444f3b213a1ffc41c900 /sys/arch/hp300 | |
parent | cbaa86c060229e92a4505efd6db4897aac90a6e9 (diff) |
missing parameter to printf; erick@bonzai.space-ei.nl
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r-- | sys/arch/hp300/stand/common/if_le.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/stand/common/if_le.c b/sys/arch/hp300/stand/common/if_le.c index 1df2554261e..ad9a0c72a40 100644 --- a/sys/arch/hp300/stand/common/if_le.c +++ b/sys/arch/hp300/stand/common/if_le.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_le.c,v 1.2 1999/01/11 05:11:21 millert Exp $ */ +/* $OpenBSD: if_le.c,v 1.3 2003/12/12 08:56:11 deraadt Exp $ */ /* $NetBSD: if_le.c,v 1.9 1997/01/30 10:32:54 thorpej Exp $ */ /* @@ -589,7 +589,7 @@ le_put(desc, pkt, len) if (stat & LE_SERR) le_error(unit, "le_put(timeout)", stat); if (stat & LE_INIT) { - printf("le%d: reset and retry packet\n"); + printf("le%d: reset and retry packet\n", unit); lewrcsr(sc, 0, LE_TINT); /* sanity */ le_init(); goto le_put_loop; |