1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-22 16:42:56 -08:00

use \t instead of a literal tab in a format string

This commit is contained in:
dlg 2019-02-19 21:32:42 +00:00
parent 374253ac95
commit 557040b27f

View File

@ -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)