Skip to content

Commit

Permalink
Adapt to latest changes in main
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Dec 7, 2024
1 parent 764927c commit f061b73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extension/httpfs/httpfs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,8 @@ unique_ptr<ResponseWrapper> HTTPFileSystem::GetRangeRequest(FileHandle &handle,
}

HTTPFileHandle::HTTPFileHandle(FileSystem &fs, const string &path, FileOpenFlags flags, const HTTPParams &http_params)
: FileHandle(fs, path), http_params(http_params), flags(flags), length(0), buffer_available(0), buffer_idx(0),
file_offset(0), buffer_start(0), buffer_end(0) {
: FileHandle(fs, path, flags), http_params(http_params), flags(flags), length(0), buffer_available(0),
buffer_idx(0), file_offset(0), buffer_start(0), buffer_end(0) {
}

unique_ptr<HTTPFileHandle> HTTPFileSystem::CreateHandle(const string &path, FileOpenFlags flags,
Expand Down

0 comments on commit f061b73

Please sign in to comment.