From 4d628093e32fc85f200e2692483e9bf67aec598f Mon Sep 17 00:00:00 2001 From: Paul Durrant Date: Mon, 9 May 2016 13:41:19 +0100 Subject: [PATCH] Fix compile errors Two variables were being initialized but not used, leading to a compiler warning. Signed-off-by: Paul Durrant --- src/xenvbd/pdo.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/xenvbd/pdo.c b/src/xenvbd/pdo.c index 8a2cbe4..3565cc6 100644 --- a/src/xenvbd/pdo.c +++ b/src/xenvbd/pdo.c @@ -2364,8 +2364,6 @@ PdoDispatchPnp( ) { PIO_STACK_LOCATION Stack = IoGetCurrentIrpStackLocation(Irp); - UCHAR Minor = Stack->MinorFunction; - ULONG TargetId = PdoGetTargetId(Pdo); __PdoCheckEjectPending(Pdo); -- 2.39.5