Tune output to remove trailing space.

Submitted by:	Christoph Mallon
This commit is contained in:
Alexander Motin 2009-02-15 10:41:42 +00:00
parent 8e6f99f648
commit f8dacb0467
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=188641

View File

@ -427,9 +427,9 @@ cap_pciaf(int fd, struct pci_conf *p, uint8_t ptr)
uint8_t cap;
cap = read_config(fd, &p->pc_sel, ptr + PCIR_PCIAF_CAP, 1);
printf("PCI Advanced Features: %s%s",
(cap & PCIM_PCIAFCAP_FLR)?"FLR ":"",
(cap & PCIM_PCIAFCAP_TP)?"TP ":"");
printf("PCI Advanced Features:%s%s",
cap & PCIM_PCIAFCAP_FLR ? " FLR" : "",
cap & PCIM_PCIAFCAP_TP ? " TP" : "");
}
void