[NTOS:IO] Tiny improvement to debug message

Add quotes around string, since it is often empty, thus confusing in log.
This commit is contained in:
Andrew Boyarshin 2018-11-25 17:31:12 +07:00 committed by Pierre Schweitzer
parent 9cc37704f5
commit 198601a101

View file

@ -695,7 +695,7 @@ IoRaiseInformationalHardError(IN NTSTATUS ErrorStatus,
IN PUNICODE_STRING String,
IN PKTHREAD Thread)
{
DPRINT1("IoRaiseInformationalHardError: %lx, %wZ\n", ErrorStatus, String);
DPRINT1("IoRaiseInformationalHardError: %lx, '%wZ'\n", ErrorStatus, String);
return FALSE;
}