From 70740f2a14bd1eb425e6949a60e334b2058354f1 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Sat, 3 Jun 2017 16:54:18 +0000 Subject: [PATCH] [UDFS] Fix broken KdPrint svn path=/trunk/; revision=74770 --- reactos/drivers/filesystems/udfs/fscntrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/drivers/filesystems/udfs/fscntrl.cpp b/reactos/drivers/filesystems/udfs/fscntrl.cpp index 72640e7d50d..bd024e4ed02 100644 --- a/reactos/drivers/filesystems/udfs/fscntrl.cpp +++ b/reactos/drivers/filesystems/udfs/fscntrl.cpp @@ -348,7 +348,7 @@ UDFMountVolume( // KdPrint(("Build " VER_STR_PRODUCT "\n\n")); fsDeviceObject = PtrIrpContext->TargetDeviceObject; - KdPrint(("Mount on device object %x\n")); + KdPrint(("Mount on device object %x\n", fsDeviceObject)); filterDevExt = (PFILTER_DEV_EXTENSION)fsDeviceObject->DeviceExtension; if (filterDevExt->NodeIdentifier.NodeType == UDF_NODE_TYPE_FILTER_DEVOBJ && filterDevExt->NodeIdentifier.NodeSize == sizeof(FILTER_DEV_EXTENSION)) { -- 2.17.1