Skip to content

Commit

Permalink
fix wrong param type logErrorf (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
scuzqy authored Jun 19, 2024
1 parent e908946 commit f635126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/EACopyClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1188,7 +1188,7 @@ Client::traverseFilesInDirectory(LogContext& logContext, Connection* sourceConne
uint findNextError = GetLastError();
if (findNextError != ERROR_NO_MORE_FILES)
{
logErrorf(L"FindNextFileW failed for %ls: %ls", searchStr, getErrorText(findNextError).c_str());
logErrorf(L"FindNextFileW failed for %ls: %ls", searchStr.c_str(), getErrorText(findNextError).c_str());
return false;
}
}
Expand Down

0 comments on commit f635126

Please sign in to comment.