Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche committed Nov 23, 2023
1 parent 2f28037 commit 8759688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/filesystem/s3fs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2410,7 +2410,7 @@ class S3FileSystem::Impl : public std::enable_shared_from_this<S3FileSystem::Imp
DCHECK_GT(file_info.path().size(), bucket.size());
auto file_path = file_info.path().substr(bucket.size() + 1);
if (file_info.IsDirectory()) {
DCHECK(internal::AssertNoTrailingSlash(file_path));
DCHECK_OK(internal::AssertNoTrailingSlash(file_path));
file_path = file_path + kSep;
}
file_paths.push_back(std::move(file_path));
Expand Down

0 comments on commit 8759688

Please sign in to comment.