From 30282fee32b9f2e9441bc9e4f821dd950d184ed0 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 18 Feb 2024 00:32:13 +0100 Subject: [PATCH] Avoid quotation marks around dumped paths. --- src/tools/dcpomatic_cli.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 () -- 2.30.2