summaryrefslogtreecommitdiff
path: root/usr.sbin/pcidump
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2013-06-15 19:45:04 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2013-06-15 19:45:04 +0000
commit53337ec74dff0534c810f8a08b9d2ebc2df10fec (patch)
tree6f9d102ac422c545e32111cb9e57791a156d5b9d /usr.sbin/pcidump
parent8e54dcd1841ec6d62c7bb7f1f19e6a3d71045296 (diff)
Fix typo.
Diffstat (limited to 'usr.sbin/pcidump')
-rw-r--r--usr.sbin/pcidump/pcidump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pcidump/pcidump.c b/usr.sbin/pcidump/pcidump.c
index 0dfd31e722e..faa3a065292 100644
--- a/usr.sbin/pcidump/pcidump.c
+++ b/usr.sbin/pcidump/pcidump.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcidump.c,v 1.32 2012/07/03 13:09:25 jsg Exp $ */
+/* $OpenBSD: pcidump.c,v 1.33 2013/06/15 19:45:03 kettenis Exp $ */
/*
* Copyright (c) 2006, 2007 David Gwynne <loki@animata.net>
@@ -597,7 +597,7 @@ dump(int bus, int dev, int func)
if (pci_read(bus, dev, func, PCI_COMMAND_STATUS_REG, &reg) != 0)
warn("unable to read PCI_COMMAND_STATUS_REG");
- printf("\t0x%04x: Command: %04x Status ID: %04x\n",
+ printf("\t0x%04x: Command: %04x Status: %04x\n",
PCI_COMMAND_STATUS_REG, reg & 0xffff, (reg >> 16) & 0xffff);
if (pci_read(bus, dev, func, PCI_CLASS_REG, &reg) != 0)