Reactos

[DEVMGR] Fix a Clang-Cl warning about DriverInfoDetailData.SectionName

"warning: logical not is only applied to the left hand side of this comparison [-Wlogical-not-parentheses]"

CORE-14306

authored by

Serge Gautherie and committed by
Hermès BÉLUSCA - MAÏTO
627f3dc7 12bdbe57

+1 -2
+1 -2
dll/win32/devmgr/properties/misc.cpp
··· 1078 1078 ERR("SetupDiGetDriverInfoDetail() failed with error 0x%lx\n", GetLastError()); 1079 1079 goto Cleanup; 1080 1080 } 1081 - if (!_wcsicmp(DriverInfoDetailData.SectionName, 1082 - InfSection) != 0) 1081 + if (_wcsicmp(DriverInfoDetailData.SectionName, InfSection) == 0) 1083 1082 { 1084 1083 /* We have found the right driver */ 1085 1084 Ret = TRUE;