diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-12-29 00:16:22 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-12-29 00:16:22 +0000 |
| commit | 6219882009ffd499b4b8000697b17a659c834212 (patch) | |
| tree | 54e8270f3520a72f636a679c98ccc43ee0c19fac /src/lib/cross.cc | |
| parent | 4014143952f791973d94c5cfb5bec9e97d1462b7 (diff) | |
Fix a number of missing fopen_boost replacements; might fix problems with adding content from non-Latin directories.
Diffstat (limited to 'src/lib/cross.cc')
| -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 7436dbf26..746b4f509 100644 --- a/src/lib/cross.cc +++ b/src/lib/cross.cc @@ -187,7 +187,7 @@ run_ffprobe (boost::filesystem::path content, boost::filesystem::path out, share return; } - FILE* o = fopen (out.string().c_str(), "w"); + FILE* o = fopen_boost (out, "w"); if (!o) { log->log ("ffprobe call failed (could not create output file)"); return; |
