mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
Moved verbose log message
Do not log expected abort conditions
This commit is contained in:
committed by
Pascal Nowack
parent
3dc5ac74a9
commit
096e98d8b5
@@ -330,9 +330,9 @@ static BOOL do_add_directory_contents_to_list(wClipboard* clipboard, const WCHAR
|
||||
BOOL bRet = FindNextFileW(hFind, &FileData);
|
||||
if (!bRet)
|
||||
{
|
||||
WLog_WARN(TAG, "FindNextFile failed (%" PRIu32 ")", GetLastError());
|
||||
if (ERROR_NO_MORE_FILES == GetLastError())
|
||||
return TRUE;
|
||||
WLog_WARN(TAG, "FindNextFile failed (%" PRIu32 ")", GetLastError());
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user