summaryrefslogtreecommitdiff
path: root/src/lib/file_group.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-05 18:06:12 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-05 18:06:12 +0000
commitedafebffa42b9bc57408cc9540a7c15e4e4cab63 (patch)
tree1b170a86427b9671fc45e4a1317d5fd944eec674 /src/lib/file_group.cc
parent8c23bbd8e6adcc83bd0d530aedf96df83302f878 (diff)
Use _fseeki64 on Windows when handling content files.
Diffstat (limited to 'src/lib/file_group.cc')
-rw-r--r--src/lib/file_group.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/file_group.cc b/src/lib/file_group.cc
index dfe336b8f..807695451 100644
--- a/src/lib/file_group.cc
+++ b/src/lib/file_group.cc
@@ -125,7 +125,7 @@ FileGroup::seek (int64_t pos, int whence) const
}
ensure_open_path (i);
- fseek (_current_file, sub_pos, SEEK_SET);
+ dcpomatic_fseek (_current_file, sub_pos, SEEK_SET);
return full_pos;
}