Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SoftEtherVPN/libhamcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'FileSystem.c')
-rwxr-xr-xFileSystem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FileSystem.c b/FileSystem.c
index cb64fe5..b0eda22 100755
--- a/FileSystem.c
+++ b/FileSystem.c
@@ -51,7 +51,7 @@ bool FileSeek(FILE *file, const size_t offset)
return false;
}
- return fseek(file, offset, SEEK_SET) == 0;
+ return fseek(file, (long)offset, SEEK_SET) == 0;
}
size_t FileSize(const char *path)