Fix fopen() on windows to cope with long filenames (part of #1755).
[dcpomatic.git] / src / lib / cross_osx.cc
index fc8ccd4a872dbe2566324d877d053e5beaa80637..bd31541c5e8b9a700d895f8bf54dde0270ba5ce6 100644 (file)
@@ -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;
+}