We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 532d9b0 commit b068f00Copy full SHA for b068f00
1 file changed
tools/ModelPathDumper/ModelPathDumper.cpp
@@ -32,7 +32,7 @@ void searchAndDumpPaths(const fs::path& directory, const std::string& outputFile
32
if (entry.is_regular_file() && entry.path().extension() == ".exo") {
33
std::ifstream file(entry.path());
34
if (!file) {
35
- std::cerr << "Error: Unable to open " << entry.path() << std::endl;
+ fprintf(stderr, "Error: Unable to open %s", entry.path());
36
continue;
37
}
38
0 commit comments