mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
spell check with codespell
This commit is contained in:
@@ -98,7 +98,7 @@ BOOL wf_mirror_driver_display_device_attach(wfInfo* wfi, DWORD mode)
|
||||
WLog_DBG(TAG, "Error opening RegKey: status=0x%08lX", status);
|
||||
|
||||
if (status == ERROR_ACCESS_DENIED)
|
||||
WLog_DBG(TAG, "access denied. Do you have admin privleges?");
|
||||
WLog_DBG(TAG, "access denied. Do you have admin privileges?");
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
@@ -111,7 +111,7 @@ BOOL wf_mirror_driver_display_device_attach(wfInfo* wfi, DWORD mode)
|
||||
WLog_DBG(TAG, "Error querying RegKey: status=0x%08lX", status);
|
||||
|
||||
if (status == ERROR_ACCESS_DENIED)
|
||||
WLog_DBG(TAG, "access denied. Do you have admin privleges?");
|
||||
WLog_DBG(TAG, "access denied. Do you have admin privileges?");
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
@@ -127,7 +127,7 @@ BOOL wf_mirror_driver_display_device_attach(wfInfo* wfi, DWORD mode)
|
||||
WLog_DBG(TAG, "Error writing registry key: %ld", status);
|
||||
|
||||
if (status == ERROR_ACCESS_DENIED)
|
||||
WLog_DBG(TAG, "access denied. Do you have admin privleges?");
|
||||
WLog_DBG(TAG, "access denied. Do you have admin privileges?");
|
||||
|
||||
WLog_DBG(TAG, "");
|
||||
return FALSE;
|
||||
|
||||
@@ -136,7 +136,7 @@ int wf_wasapi_get_device_string(LPWSTR pattern, LPWSTR* deviceStr)
|
||||
if (wcscmp(pattern, nameVar.pwszVal) < 0)
|
||||
{
|
||||
unsigned int devStrLen;
|
||||
WLog_INFO(TAG, "Using sound ouput endpoint: [%s] (%s)", nameVar.pwszVal, pwszID);
|
||||
WLog_INFO(TAG, "Using sound output endpoint: [%s] (%s)", nameVar.pwszVal, pwszID);
|
||||
// WLog_INFO(TAG, "matched %d characters", wcscmp(pattern, nameVar.pwszVal);
|
||||
devStrLen = wcslen(pwszID);
|
||||
*deviceStr = (LPWSTR)calloc(devStrLen + 1, 2);
|
||||
|
||||
Reference in New Issue
Block a user