Skip to content

Commit

Permalink
Whoops! Fix formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
DrChat committed May 11, 2017
1 parent 7194c9e commit cf83843
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xenia/cpu/ppc/testing/ppc_testing_native_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand All @@ -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;
}

Expand Down

0 comments on commit cf83843

Please sign in to comment.