summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-05-13 12:52:46 +0100
committerCarl Hetherington <cth@carlh.net>2015-05-13 12:52:46 +0100
commit9e4dda377dc53c90ae6e817f0a1989772637406e (patch)
treec07248eae40e36997f4a14a379a4659acf2a5c0e /src/lib
parent55bbed60ce090b8f84194b546e2c8d4ebed2eb2f (diff)
Try to fix build.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/ffmpeg_content.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ffmpeg_content.cc b/src/lib/ffmpeg_content.cc
index 496dac8d8..a52b53b04 100644
--- a/src/lib/ffmpeg_content.cc
+++ b/src/lib/ffmpeg_content.cc
@@ -367,7 +367,7 @@ FFmpegContent::audio_analysis_path () const
boost::filesystem::path p = AudioContent::audio_analysis_path ();
if (audio_stream ()) {
- p += "_" + audio_stream()->identifier ();
+ p = p.string() + "_" + audio_stream()->identifier ();
}
return p;
}