diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-04-23 13:34:52 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-04-23 13:34:52 +0000 |
commit | 0695dce904b99103b4cc7fec55d7413358ac120d (patch) | |
tree | f6995bddf31b3aab28d430274a64849f9e1a49ec /usr.sbin/pcidump | |
parent | 4f8231b24973fc14e0973e84cca023b7a139b478 (diff) |
correct indentation; no functional change
ok tb@
Diffstat (limited to 'usr.sbin/pcidump')
-rw-r--r-- | usr.sbin/pcidump/pcidump.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/pcidump/pcidump.c b/usr.sbin/pcidump/pcidump.c index c7dc589ce89..9643402ec59 100644 --- a/usr.sbin/pcidump/pcidump.c +++ b/usr.sbin/pcidump/pcidump.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcidump.c,v 1.70 2024/02/01 18:26:45 kettenis Exp $ */ +/* $OpenBSD: pcidump.c,v 1.71 2024/04/23 13:34:51 jsg Exp $ */ /* * Copyright (c) 2006, 2007 David Gwynne <loki@animata.net> @@ -337,11 +337,11 @@ probe(int bus, int dev, int func) if (vendor != NULL) { for (pkp = pci_known_products; pkp->productname != NULL; pkp++) - if (pkp->vendor == PCI_VENDOR(id_reg) && - pkp->product == PCI_PRODUCT(id_reg)) { - product = pkp->productname; - break; - } + if (pkp->vendor == PCI_VENDOR(id_reg) && + pkp->product == PCI_PRODUCT(id_reg)) { + product = pkp->productname; + break; + } } printf(" %d:%d:%d: %s %s\n", bus, dev, func, |