Skip to content

Commit

Permalink
Adapt to FileHandle change of signature
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Dec 16, 2024
1 parent d3d5a12 commit 9d37bc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/azure_filesystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void AzureContextState::QueryEnd() {

AzureFileHandle::AzureFileHandle(AzureStorageFileSystem &fs, string path, FileOpenFlags flags,
const AzureReadOptions &read_options)
: FileHandle(fs, std::move(path)), flags(flags),
: FileHandle(fs, std::move(path), flags), flags(flags),
// File info
length(0), last_modified(0),
// Read info
Expand Down

0 comments on commit 9d37bc9

Please sign in to comment.