mirror of
https://github.com/aimrebirth/tools.git
synced 2026-04-15 01:43:25 +00:00
Fix printing paths.
This commit is contained in:
parent
962c12374f
commit
c261342d6b
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ int main(int argc, char *argv[])
|
||||||
auto files = enumerate_files_like(p, ".*\\.TM", false);
|
auto files = enumerate_files_like(p, ".*\\.TM", false);
|
||||||
for (auto &f : files)
|
for (auto &f : files)
|
||||||
{
|
{
|
||||||
std::cout << "processing: " << f << "\n";
|
std::cout << "processing: " << to_printable_string(f) << "\n";
|
||||||
convert(f);
|
convert(f);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue