Whoops! Fix formatting.

This commit is contained in:
Dr. Chat 2017-05-11 11:38:50 -05:00
parent 7194c9e49b
commit cf838439b7
1 changed files with 2 additions and 2 deletions

View File

@ -197,7 +197,7 @@ class TestRunner {
// TODO: Load the test suite into memory.
FILE* file = filesystem::OpenFile(suite.bin_file_path, "rb");
if (!file) {
XELOGE("Failed to open file %s!", suite.bin_file_path);
XELOGE("Failed to open file %ls!", suite.bin_file_path.c_str());
return false;
}
@ -206,7 +206,7 @@ class TestRunner {
fseek(file, 0, SEEK_SET);
if (file_length > memory_size_) {
XELOGE("Bin file %s is too big!", suite.bin_file_path);
XELOGE("Bin file %ls is too big!", suite.bin_file_path.c_str());
return false;
}