Skip to content

Commit 8930f02

Browse files
committed
minor fix
1 parent 1ada543 commit 8930f02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/server/file_system_posix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ void setPosition(FileHandle::Type handle, int64_t position)
115115
{
116116
static_assert(sizeof(off_t) >= 8, "64-bit off_t is required");
117117
auto ret = ::lseek(handle, position, SEEK_SET);
118-
throwIfFailed("lseek64", ret >= 0);
118+
throwIfFailed("lseek", ret >= 0);
119119
}
120120

121121
void write(const Path& path, const void* buffer, size_t bytes)

0 commit comments

Comments
 (0)