[ros-diffs] [cgutman] 54194: [STREAM] - Fix a typo - Search for bad !! usage inspired by r54193

cgutman at svn.reactos.org cgutman at svn.reactos.org
Tue Oct 18 20:36:55 UTC 2011


Author: cgutman
Date: Tue Oct 18 20:36:54 2011
New Revision: 54194

URL: http://svn.reactos.org/svn/reactos?rev=54194&view=rev
Log:
[STREAM]
- Fix a typo
- Search for bad !! usage inspired by r54193

Modified:
    trunk/reactos/drivers/wdm/audio/legacy/stream/pnp.c

Modified: trunk/reactos/drivers/wdm/audio/legacy/stream/pnp.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/wdm/audio/legacy/stream/pnp.c?rev=54194&r1=54193&r2=54194&view=diff
==============================================================================
--- trunk/reactos/drivers/wdm/audio/legacy/stream/pnp.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/wdm/audio/legacy/stream/pnp.c [iso-8859-1] Tue Oct 18 20:36:54 2011
@@ -264,7 +264,7 @@
         }
     }
 
-    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;




More information about the Ros-diffs mailing list