summaryrefslogtreecommitdiff
path: root/src/lib/cross.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-10-14 15:41:41 +0100
committerCarl Hetherington <cth@carlh.net>2015-10-14 15:41:41 +0100
commitbddcf0be1cc583aebd30e477748284d2a862a3f7 (patch)
tree7ca65777773d8c80963b20c88eab38956af46754 /src/lib/cross.cc
parent30917783d3e5c639b61935b616049d745213942f (diff)
Quote ffprobe path on OS X.
Diffstat (limited to 'src/lib/cross.cc')
-rw-r--r--src/lib/cross.cc2
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