summaryrefslogtreecommitdiff
path: root/src/lib/cross_windows.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-10-05 00:20:27 +0200
committerCarl Hetherington <cth@carlh.net>2023-10-09 23:38:25 +0200
commit94a9473993b027b9368077009decbdd4322f90e3 (patch)
treedca58767988a9f8c38521936992f46c9dc107194 /src/lib/cross_windows.cc
parente7a04275703b8cd54e1325d42f484ed7d0acab92 (diff)
Bump libdcp for new filesystem wrappers.
Diffstat (limited to 'src/lib/cross_windows.cc')
-rw-r--r--src/lib/cross_windows.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/cross_windows.cc b/src/lib/cross_windows.cc
index 9480f7754..9181b6c8a 100644
--- a/src/lib/cross_windows.cc
+++ b/src/lib/cross_windows.cc
@@ -30,6 +30,7 @@
#include "dcpomatic_assert.h"
#include "util.h"
#include <dcp/file.h>
+#include <dcp/filesystem.h>
#include <dcp/raw_convert.h>
#include <glib.h>
extern "C" {
@@ -166,7 +167,7 @@ run_ffprobe(boost::filesystem::path content, boost::filesystem::path out, bool e
wcscat(command, L" \"");
- MultiByteToWideChar(CP_UTF8, 0, boost::filesystem::canonical(content).make_preferred().string().c_str(), -1, tmp, sizeof(tmp));
+ MultiByteToWideChar(CP_UTF8, 0, dcp::filesystem::canonical(content).make_preferred().string().c_str(), -1, tmp, sizeof(tmp));
wcscat(command, tmp);
wcscat(command, L"\"");