From 24510b8b2ab9ffff067b5ae444fcf3d61cebb31c 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 --- BaS_gcc/pci/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaS_gcc/pci/pci.c b/BaS_gcc/pci/pci.c index cde1dfe..9aea459 100644 --- a/BaS_gcc/pci/pci.c +++ b/BaS_gcc/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; }