summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-02-18 00:32:13 +0100
committerCarl Hetherington <cth@carlh.net>2024-02-18 00:32:13 +0100
commit30282fee32b9f2e9441bc9e4f821dd950d184ed0 (patch)
tree22472d700e0fb7b8c4b3c9e890fa525c9d203e46
parent9d843365fb77e00dd31c03d1e8ea49126ab550f2 (diff)
Avoid quotation marks around dumped paths.
-rw-r--r--src/tools/dcpomatic_cli.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_cli.cc b/src/tools/dcpomatic_cli.cc
index 96bf83086..308b11506 100644
--- a/src/tools/dcpomatic_cli.cc
+++ b/src/tools/dcpomatic_cli.cc
@@ -96,7 +96,7 @@ print_dump (shared_ptr<Film> film)
for (auto c: film->content()) {
cout << "\n"
- << c->path(0) << "\n"
+ << c->path(0).string() << "\n"
<< "\tat " << c->position().seconds ()
<< " length " << c->full_length(film).seconds ()
<< " start trim " << c->trim_start().seconds ()