summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-23 20:14:53 +0100
committerCarl Hetherington <cth@carlh.net>2022-12-23 20:14:53 +0100
commitd512af5646b85289293858fc98dd7e1f2864fb7d (patch)
tree12dc030ec2f702013bdbc92d2f96747533c02928 /src
parent43d0a6b4cd2a854e7fa773bb55b369e9e02d5788 (diff)
Whitespace fix.
Diffstat (limited to 'src')
-rw-r--r--src/file.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/file.cc b/src/file.cc
index c0e7549a..b79051a3 100644
--- a/src/file.cc
+++ b/src/file.cc
@@ -53,7 +53,7 @@ File::File(boost::filesystem::path path, std::string mode)
#ifdef LIBDCP_WINDOWS
std::wstring mode_wide(mode.begin(), mode.end());
/* c_str() here should give a UTF-16 string */
- _file = _wfopen(fix_long_path(path).c_str(), mode_wide.c_str());
+ _file = _wfopen(fix_long_path(path).c_str(), mode_wide.c_str());
#else
_file = fopen(path.c_str(), mode.c_str());
#endif