Merge pull request #124 from x1nixmzeng/master
Minor log formatting fix
This commit is contained in:
commit
76e360ba8b
|
@ -374,7 +374,7 @@ bool DiscoverTests(std::wstring& test_path,
|
||||||
WIN32_FIND_DATA ffd;
|
WIN32_FIND_DATA ffd;
|
||||||
HANDLE hFind = FindFirstFile(search_path.c_str(), &ffd);
|
HANDLE hFind = FindFirstFile(search_path.c_str(), &ffd);
|
||||||
if (hFind == INVALID_HANDLE_VALUE) {
|
if (hFind == INVALID_HANDLE_VALUE) {
|
||||||
PLOGE("Unable to find test path %s", test_path.c_str());
|
PLOGE("Unable to find test path %ls", test_path.c_str());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
do {
|
do {
|
||||||
|
@ -392,7 +392,7 @@ bool DiscoverTests(std::wstring& test_path,
|
||||||
#else
|
#else
|
||||||
DIR* d = opendir(test_path.c_str());
|
DIR* d = opendir(test_path.c_str());
|
||||||
if (!d) {
|
if (!d) {
|
||||||
PLOGE("Unable to find test path %s", test_path.c_str());
|
PLOGE("Unable to find test path %ls", test_path.c_str());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
struct dirent* dir;
|
struct dirent* dir;
|
||||||
|
|
Loading…
Reference in New Issue