diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/cross.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/cross.cc b/src/lib/cross.cc index 9ca3fe2b0..02cdfd444 100644 --- a/src/lib/cross.cc +++ b/src/lib/cross.cc @@ -252,7 +252,7 @@ run_ffprobe (boost::filesystem::path content, boost::filesystem::path out, share path /= "MacOS"; path /= "ffprobe"; - string ffprobe = path.string() + " \"" + content.string() + "\" 2> \"" + out.string() + "\""; + string ffprobe = "\"" + path.string() + "\" \"" + content.string() + "\" 2> \"" + out.string() + "\""; LOG_GENERAL (N_("Probing with %1"), ffprobe); system (ffprobe.c_str ()); #endif |
