We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1342f1c commit bf75e1bCopy full SHA for bf75e1b
1 file changed
tools/ModelPathDumper/ModelPathDumper.cpp
@@ -16,9 +16,9 @@ namespace fs = std::filesystem;
16
void printHeader() {
17
char versionNumber[6] = "0.2.0";
18
19
- printf("===========================");
20
- std::cout << " ModelPathDumper ver. " << versionNumber << std::endl;
21
+ printf("===========================\n");
+ printf("ModelPathDumper ver. %s\n", versionNumber);
22
}
23
24
void searchAndDumpPaths(const fs::path& directory, const std::string& outputFile, int& fileCount) {
@@ -73,4 +73,4 @@ int main() {
73
printf("Search is completed. Found %d .exo files.", exoCount);
74
return 0;
75
76
-} // End of namespace fs
+} // End of namespace fs
0 commit comments