Use matching format for NTSTATUS
This commit is contained in:
parent
746e7f1b06
commit
1dd65a9ede
|
@ -359,7 +359,7 @@ static void get_registry_dns(res_state statp)
|
||||||
status = RtlCheckRegistryKey (RTL_REGISTRY_SERVICES, keyName);
|
status = RtlCheckRegistryKey (RTL_REGISTRY_SERVICES, keyName);
|
||||||
if (!NT_SUCCESS (status))
|
if (!NT_SUCCESS (status))
|
||||||
{
|
{
|
||||||
DPRINTF (statp->options & RES_DEBUG, "RtlCheckRegistryKey: status %p\n",
|
DPRINTF (statp->options & RES_DEBUG, "RtlCheckRegistryKey: status 0x%08X\n",
|
||||||
status);
|
status);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -381,7 +381,7 @@ static void get_registry_dns(res_state statp)
|
||||||
if (!NT_SUCCESS (status))
|
if (!NT_SUCCESS (status))
|
||||||
{
|
{
|
||||||
DPRINTF (statp->options & RES_DEBUG,
|
DPRINTF (statp->options & RES_DEBUG,
|
||||||
"RtlQueryRegistryValues: status %p\n", status);
|
"RtlQueryRegistryValues: status 0x%08X\n", status);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue