summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2019-02-19 21:32:43 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2019-02-19 21:32:43 +0000
commita523f82320a26b6cd59d6f08906c1b2d4422c8c7 (patch)
treef6bc3bcb679dfc0224426df2a5934a011ea0ea74 /usr.sbin
parent9dc80ffd45f59eb1cd63b08bc10d496a5f470926 (diff)
use \t instead of a literal tab in a format string
Diffstat (limited to 'usr.sbin')
-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 92b15e20834..210c96af667 100644
--- a/usr.sbin/pcidump/pcidump.c
+++ b/usr.sbin/pcidump/pcidump.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcidump.c,v 1.48 2019/02/19 21:29:45 dlg Exp $ */
+/* $OpenBSD: pcidump.c,v 1.49 2019/02/19 21:32:42 dlg Exp $ */
/*
* Copyright (c) 2006, 2007 David Gwynne <loki@animata.net>
@@ -330,7 +330,7 @@ dump_pci_powerstate(int bus, int dev, int func, uint8_t ptr)
if (pci_read(bus, dev, func, ptr + PCI_PMCSR, &pmcsr) != 0)
return;
- printf("\t State: D%d", pmcsr & PCI_PMCSR_STATE_MASK);
+ printf("\t\tState: D%d", pmcsr & PCI_PMCSR_STATE_MASK);
if (pmcsr & PCI_PMCSR_PME_EN)
printf(" PME# enabled");
if (pmcsr & PCI_PMCSR_PME_STATUS)