mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 14:43:02 +00:00
[WIN32SS][NTOSKRNL] %wZ expects the address of the string
svn path=/trunk/; revision=68689
This commit is contained in:
parent
573ce51c42
commit
4887326473
2 changed files with 2 additions and 2 deletions
|
@ -288,7 +288,7 @@ WmipOpenGuidObjectByName(
|
||||||
Status = WmipGUIDFromString(&GuidString, &Guid);
|
Status = WmipGUIDFromString(&GuidString, &Guid);
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
DPRINT1("WMI: Invalid uuid format for guid '%wZ'\n", GuidString);
|
DPRINT1("WMI: Invalid uuid format for guid '%wZ'\n", &GuidString);
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -211,7 +211,7 @@ IntCopyRegistryKey(
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
/* Just warn, but continue with the remaining sub-keys */
|
/* Just warn, but continue with the remaining sub-keys */
|
||||||
WARN_(VIDEOPRT, "failed to set value '%wZ'.\n", NameString);
|
WARN_(VIDEOPRT, "failed to set value '%wZ'.\n", &NameString);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Next subkey */
|
/* Next subkey */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue