diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2000-07-06 00:59:02 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2000-07-06 00:59:02 +0000 |
commit | d11cc075a89c62b86885b0d346fab43051679441 (patch) | |
tree | c3984219d5380c8184f8fe6ee100cabc05f6b7a5 /sys/dev/ic/elink3.c | |
parent | d3615488710b6e955dbdad0399aa749de95a9182 (diff) |
printf %s
Diffstat (limited to 'sys/dev/ic/elink3.c')
-rw-r--r-- | sys/dev/ic/elink3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/elink3.c b/sys/dev/ic/elink3.c index 7700492f105..4b750403021 100644 --- a/sys/dev/ic/elink3.c +++ b/sys/dev/ic/elink3.c @@ -1,4 +1,4 @@ -/* $OpenBSD: elink3.c,v 1.40 2000/06/29 03:22:31 aaron Exp $ */ +/* $OpenBSD: elink3.c,v 1.41 2000/07/06 00:59:01 todd Exp $ */ /* $NetBSD: elink3.c,v 1.32 1997/05/14 00:22:00 thorpej Exp $ */ /* @@ -476,7 +476,7 @@ ep_isa_probemedia(sc) ifmedia_add(ifm, epm->epm_ifmedia, epm->epm_ifdata, 0); if (conn) printf("/"); - printf(epm->epm_name); + printf("%s", epm->epm_name); conn |= epm->epm_conn; } } @@ -539,7 +539,7 @@ ep_vortex_probemedia(sc) if ((reset_options & epm->epm_eeprom_data) != 0) { if (conn) printf("/"); - printf(epm->epm_name); + printf("%s", epm->epm_name); conn |= epm->epm_conn; ifmedia_add(ifm, epm->epm_ifmedia, epm->epm_ifdata, 0); } |