X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcross.cc;h=7c05ba2226182f39f9ec85d697899fe349cfbb44;hb=9106e6ed551b13e1b7c7ee2088d54ce0ae430bcf;hp=73e45213c5ad0724c4bd371d886ea41bfd4bf823;hpb=1bd0ed7f4a2bd67da7e8957dac7a8d143e9a599a;p=dcpomatic.git diff --git a/src/lib/cross.cc b/src/lib/cross.cc index 73e45213c..7c05ba222 100644 --- a/src/lib/cross.cc +++ b/src/lib/cross.cc @@ -36,6 +36,7 @@ extern "C" { #undef DATADIR #include #include +#include #endif #ifdef DCPOMATIC_OSX #include @@ -382,7 +383,6 @@ 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 << " from " << dcpomatic << "\n"; int const r = system (batch.string().c_str()); exit (WEXITSTATUS (r)); }