mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[STREAM]
- Fix a typo - Search for bad !! usage inspired by r54193 svn path=/trunk/; revision=54194
This commit is contained in:
parent
dddc64fe69
commit
9368b91f31
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ StreamClassStartDevice(
|
|||
}
|
||||
}
|
||||
|
||||
if (!!bUseInterrupt || DriverObjectExtension->Data.HwInterrupt == NULL || Config->BusInterruptLevel == 0 || Config->BusInterruptVector == 0)
|
||||
if (!bUseInterrupt || DriverObjectExtension->Data.HwInterrupt == NULL || Config->BusInterruptLevel == 0 || Config->BusInterruptVector == 0)
|
||||
{
|
||||
/* requirements not satisfied */
|
||||
DeviceExtension->SynchronizeFunction = StreamClassSynchronize;
|
||||
|
|
Loading…
Reference in a new issue