summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/cross.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/cross.cc b/src/lib/cross.cc
index 86648b23c..5875e4f40 100644
--- a/src/lib/cross.cc
+++ b/src/lib/cross.cc
@@ -376,6 +376,7 @@ start_batch_converter (boost::filesystem::path dcpomatic)
#if defined(DCPOMATIC_LINUX) || defined(DCPOMATIC_OSX)
pid_t pid = fork ();
if (pid == 0) {
+ std::cout << "start " << batch << "\n";
int const r = system (batch.string().c_str());
exit (WEXITSTATUS (r));
}