Skip to content

Commit b068f00

Browse files
committed
replace std:cerr with fprint in ModelPathDumper
1 parent 532d9b0 commit b068f00

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/ModelPathDumper/ModelPathDumper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void searchAndDumpPaths(const fs::path& directory, const std::string& outputFile
3232
if (entry.is_regular_file() && entry.path().extension() == ".exo") {
3333
std::ifstream file(entry.path());
3434
if (!file) {
35-
std::cerr << "Error: Unable to open " << entry.path() << std::endl;
35+
fprintf(stderr, "Error: Unable to open %s", entry.path());
3636
continue;
3737
}
3838

0 commit comments

Comments
 (0)