Whitespace fix.
authorCarl Hetherington <cth@carlh.net>
Fri, 23 Dec 2022 19:14:53 +0000 (20:14 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 23 Dec 2022 19:14:53 +0000 (20:14 +0100)
src/file.cc

index c0e7549ae58aeec85afa9a755d8f153711d1d513..b79051a346284d4c8b42e11bc7a8a1f3f6b34056 100644 (file)
@@ -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