diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-20 22:53:46 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-23 17:44:14 +0200 |
| commit | 87df63f0ca9cf1df4f99f5818dad45bbc4c6e3e3 (patch) | |
| tree | b8a8113e95e8577623ce8b686141031bbd89204b /src/lib/cross_osx.cc | |
| parent | 151f5c81fade29e9bebea9904fd85975351b7b78 (diff) | |
Fix fopen() on windows to cope with long filenames (part of #1755).
Diffstat (limited to 'src/lib/cross_osx.cc')
| -rw-r--r-- | src/lib/cross_osx.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/cross_osx.cc b/src/lib/cross_osx.cc index fc8ccd4a8..bd31541c5 100644 --- a/src/lib/cross_osx.cc +++ b/src/lib/cross_osx.cc @@ -607,3 +607,10 @@ dcpomatic::get_process_id () { return dcp::raw_convert<string>(getpid()); } + + +boost::filesystem::path +fix_long_path (boost::filesystem::path path) +{ + return path; +} |
