summaryrefslogtreecommitdiff
path: root/src/lib/writer.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-12-29 00:16:22 +0000
committerCarl Hetherington <cth@carlh.net>2013-12-29 00:16:22 +0000
commit6219882009ffd499b4b8000697b17a659c834212 (patch)
tree54e8270f3520a72f636a679c98ccc43ee0c19fac /src/lib/writer.cc
parent4014143952f791973d94c5cfb5bec9e97d1462b7 (diff)
Fix a number of missing fopen_boost replacements; might fix problems with adding content from non-Latin directories.
Diffstat (limited to 'src/lib/writer.cc')
-rw-r--r--src/lib/writer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc
index 109447f73..4129b7a82 100644
--- a/src/lib/writer.cc
+++ b/src/lib/writer.cc
@@ -478,7 +478,7 @@ Writer::check_existing_picture_mxf ()
boost::filesystem::path p;
p /= _film->internal_video_mxf_dir ();
p /= _film->internal_video_mxf_filename ();
- FILE* mxf = fopen (p.string().c_str(), "rb");
+ FILE* mxf = fopen_boost (p, "rb");
if (!mxf) {
_film->log()->log (String::compose ("Could not open existing MXF at %1 (errno=%2)", p.string(), errno));
return;