mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[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:
parent
9cc37704f5
commit
198601a101
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue