Skip to content

Commit 322e1b8

Browse files
committed
fix GCC warning in PLAViewer
1 parent 34cbbac commit 322e1b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/PLAViewer/PLAViewer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ int main(int argc, char* argv[]) {
6363

6464
// Display the full path of the output file of the PLA Savegame
6565
ConsoleUtils::printNewLine();
66-
printf("Output file created at: %ls\n", fs::absolute(inputSaveGame.stem().string() + ".txt").c_str());
66+
printf("Output file created at: %s\n", fs::absolute(inputSaveGame.stem().string() + ".txt").c_str());
6767

6868
// Exit message for PLAViewer
6969
ConsoleUtils::printNewLine();

0 commit comments

Comments
 (0)