diff options
| author | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-26 15:30:48 +0000 |
|---|---|---|
| committer | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-26 15:59:41 +0000 |
| commit | 56a72214a35965197932b6366ffad0fe1e3fc398 (patch) | |
| tree | 022ccae6834ee0a048920a7438866f54c205dd0c | |
| parent | 780a50c729c7bc0ac1750947223feadd918b17e8 (diff) | |
fwcontrol(8): Fix a typo in a message
- s/verndor/vendor/
MFC after: 1 week
| -rw-r--r-- | usr.sbin/fwcontrol/fwcontrol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/fwcontrol/fwcontrol.c b/usr.sbin/fwcontrol/fwcontrol.c index ce908341a42a..195697475973 100644 --- a/usr.sbin/fwcontrol/fwcontrol.c +++ b/usr.sbin/fwcontrol/fwcontrol.c @@ -440,7 +440,7 @@ show_crom(u_int32_t *crom_buf) if (hdr->info_len == 1) { /* minimum ROM */ reg = (struct csrreg *)hdr; - printf("verndor ID: 0x%06x\n", reg->val); + printf("vendor ID: 0x%06x\n", reg->val); return; } printf("info_len=%d crc_len=%d crc=0x%04x", |
