this waring break the head for me
authorMagnus Olsen <magnus@greatlord.com>
Sun, 20 Mar 2005 13:32:27 +0000 (13:32 +0000)
committerMagnus Olsen <magnus@greatlord.com>
Sun, 20 Mar 2005 13:32:27 +0000 (13:32 +0000)
pnp.c:141: warning: 'Affinity' might be used uninitialized in this function
{standard input}: Assembler messages:

initialized it with Affinity = 0;

svn path=/trunk/; revision=14221

reactos/drivers/dd/serial/pnp.c

index 990f8e0..8658eb7 100644 (file)
@@ -138,7 +138,7 @@ SerialPnpStartDevice(
        ULONG Vector = 0;
        ULONG i, j;
        KIRQL Dirql;
-       KAFFINITY Affinity;
+       KAFFINITY Affinity = 0;
        KINTERRUPT_MODE InterruptMode = Latched;
        BOOLEAN ShareInterrupt = TRUE;
        OBJECT_ATTRIBUTES objectAttributes;