Avoid quotation marks around dumped paths.
authorCarl Hetherington <cth@carlh.net>
Sat, 17 Feb 2024 23:32:13 +0000 (00:32 +0100)
committerCarl Hetherington <cth@carlh.net>
Sat, 17 Feb 2024 23:32:13 +0000 (00:32 +0100)
src/tools/dcpomatic_cli.cc

index 96bf830863f2b53266a34176357c8d29f97237fe..308b1150624a451721139adcf9e5692e48325d0b 100644 (file)
@@ -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 ()