summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-05-06 23:43:06 +0200
committerCarl Hetherington <cth@carlh.net>2022-05-06 23:43:06 +0200
commit1914e94c67a1412b494d02fd5573fa0fdc34cedf (patch)
tree81a6c5371ca6926336648f47ced114038c837eba /src
parent13a6c81232a3d33772afbf9fdf5d2879f64ff757 (diff)
Typo in function name.
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 e65d44ff..c0e7549a 100644
--- a/src/file.cc
+++ b/src/file.cc
@@ -178,7 +178,7 @@ File::seek(int64_t offset, int whence)
{
DCP_ASSERT(_file);
#ifdef LIBDCP_WINDOWS
- return fseeki64(_file, offset, whence);
+ return _fseeki64(_file, offset, whence);
#else
return fseek(_file, offset, whence);
#endif