summaryrefslogtreecommitdiff
path: root/src/tools/dcpomatic_kdm_cli.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-01-03 02:29:24 +0100
committerCarl Hetherington <cth@carlh.net>2020-01-03 02:29:24 +0100
commit9d049dc062df1c134105ec6a042aa9f56ae9c067 (patch)
tree9352048a6dfab2fea1716b549ecf953669a1ebb0 /src/tools/dcpomatic_kdm_cli.cc
parent8276ed82237c30935962874c974e5462737fb0fb (diff)
Fix failure to save screen notes when making a new one (github bug #6).
Diffstat (limited to 'src/tools/dcpomatic_kdm_cli.cc')
-rw-r--r--src/tools/dcpomatic_kdm_cli.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_kdm_cli.cc b/src/tools/dcpomatic_kdm_cli.cc
index e00e882a4..166b22285 100644
--- a/src/tools/dcpomatic_kdm_cli.cc
+++ b/src/tools/dcpomatic_kdm_cli.cc
@@ -508,7 +508,7 @@ int main (int argc, char* argv[])
{
/* Make a new screen and add it to the current cinema */
dcp::CertificateChain chain (dcp::file_to_string(optarg));
- shared_ptr<Screen> screen (new Screen (screen_description, chain.leaf(), vector<TrustedDevice>()));
+ shared_ptr<Screen> screen (new Screen (screen_description, "", chain.leaf(), vector<TrustedDevice>()));
if (cinema) {
cinema->add_screen (screen);
}