diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-12-17 14:10:41 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-12-17 14:10:41 +0000 |
commit | 3d749c75763899b95734dc202ea8589d2ddf477c (patch) | |
tree | 95e93799bd54ed0a3db1fae2323d9f71fce73862 /sys/dev/pci/if_txp.c | |
parent | 00cabea6fcdbcf8569fba0e1263ab451f1cdf325 (diff) |
Fix printf in loadfirmware error path.
Diffstat (limited to 'sys/dev/pci/if_txp.c')
-rw-r--r-- | sys/dev/pci/if_txp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_txp.c b/sys/dev/pci/if_txp.c index 807ebe21655..2ffeaf5c976 100644 --- a/sys/dev/pci/if_txp.c +++ b/sys/dev/pci/if_txp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_txp.c,v 1.74 2004/12/14 01:50:42 deraadt Exp $ */ +/* $OpenBSD: if_txp.c,v 1.75 2004/12/17 14:10:40 grange Exp $ */ /* * Copyright (c) 2001 @@ -408,7 +408,7 @@ txp_download_fw(sc) err = loadfirmware("3c990", &buf, &buflen); if (err) { - printf(": failed loadfirmware of file 3c990: errno %d\n", + printf("failed loadfirmware of file 3c990: errno %d\n", err); return (err); } |