Skip to content

Commit

Permalink
Tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Newton committed Oct 15, 2023
1 parent 0c58509 commit 8505e93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cpp/src/arrow/filesystem/azurefs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,8 @@ Status AzureFileSystem::CopyFile(const std::string& src, const std::string& dest
}

Result<std::shared_ptr<io::InputStream>> AzureFileSystem::OpenInputStream(
const std::string& s) {
return impl_->OpenInputFile(s, this);
const std::string& path) {
return impl_->OpenInputFile(path, this);
}

Result<std::shared_ptr<io::InputStream>> AzureFileSystem::OpenInputStream(
Expand All @@ -428,8 +428,8 @@ Result<std::shared_ptr<io::InputStream>> AzureFileSystem::OpenInputStream(
}

Result<std::shared_ptr<io::RandomAccessFile>> AzureFileSystem::OpenInputFile(
const std::string& s) {
return impl_->OpenInputFile(s, this);
const std::string& path) {
return impl_->OpenInputFile(path, this);
}

Result<std::shared_ptr<io::RandomAccessFile>> AzureFileSystem::OpenInputFile(
Expand Down

0 comments on commit 8505e93

Please sign in to comment.