From: Carl Hetherington Date: Sat, 17 Feb 2024 23:32:13 +0000 (+0100) Subject: Avoid quotation marks around dumped paths. X-Git-Tag: v2.16.77~6 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=30282fee32b9f2e9441bc9e4f821dd950d184ed0 Avoid quotation marks around dumped paths. --- 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) 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 ()