aboutsummaryrefslogtreecommitdiffstats
path: root/api/registry.c
diff options
context:
space:
mode:
Diffstat (limited to 'api/registry.c')
-rw-r--r--api/registry.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/api/registry.c b/api/registry.c
index e591a46..f735d4d 100644
--- a/api/registry.c
+++ b/api/registry.c
@@ -49,7 +49,7 @@ OpenKeyWait(_In_ HKEY Key, _Inout_z_ WCHAR *Path, _In_ DWORD Access, _In_ ULONGL
TimeLeft = 0;
if (WaitForSingleObject(Event, (DWORD)TimeLeft) != WAIT_OBJECT_0)
{
- LOG(WINTUN_LOG_ERR, "Timeout waiting");
+ LOG(WINTUN_LOG_ERR, L"Timeout waiting");
break;
}
}
@@ -349,7 +349,7 @@ RegistryQueryStringWait(_In_ HKEY Key, _In_opt_z_ const WCHAR *Name, _In_ DWORD
TimeLeft = 0;
if (WaitForSingleObject(Event, (DWORD)TimeLeft) != WAIT_OBJECT_0)
{
- LOG(WINTUN_LOG_ERR, "Timeout waiting");
+ LOG(WINTUN_LOG_ERR, L"Timeout waiting");
break;
}
}
@@ -427,7 +427,7 @@ RegistryQueryDWORDWait(_In_ HKEY Key, _In_opt_z_ const WCHAR *Name, _In_ DWORD T
TimeLeft = 0;
if (WaitForSingleObject(Event, (DWORD)TimeLeft) != WAIT_OBJECT_0)
{
- LOG(WINTUN_LOG_ERR, "Timeout waiting");
+ LOG(WINTUN_LOG_ERR, L"Timeout waiting");
break;
}
}