From 27d682fa030501611a5b52f41f29738134b45c0b Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Tue, 24 Oct 2006 09:04:14 -0700 Subject: [PATCH] Fix from HEAD accidentally reverted during merge. --- hw/xfree86/os-support/bus/linuxPci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/os-support/bus/linuxPci.c b/hw/xfree86/os-support/bus/linuxPci.c index 0a1d16727..de75fc486 100644 --- a/hw/xfree86/os-support/bus/linuxPci.c +++ b/hw/xfree86/os-support/bus/linuxPci.c @@ -380,7 +380,7 @@ xf86GetPciDomain(PCITAG Tag) return 1; /* Domain 0 is reserved */ if ((result = PCI_DOM_FROM_TAG(Tag)) != 0) - return result; + return result + 1; if ((fd = linuxPciOpenFile(dev, FALSE)) < 0) return 0;