From 7161ed3b55f0d3e0c4ddb23b377adaebc656fd99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Tue, 6 Dec 2016 16:49:42 +0000 Subject: [PATCH] fix shifting compare value --- pci/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pci/pci.c b/pci/pci.c index cde1dfe..9aea459 100644 --- a/pci/pci.c +++ b/pci/pci.c @@ -522,8 +522,8 @@ static bool match_classcode(uint32_t handle, uint32_t classcode) return false; else classcode >>= 8; - value >>= 8; } + value >>= 8; } return true; }