Skip to content

Commit 303d077

Browse files
authored
MINOR: [C++] Fix lint errors (#48173)
### Rationale for this change A C++ linting error was introduced with #40705. ### What changes are included in this PR? Linter fixed issue in `cpp/examples/arrow/parquet_read_write.cc` Authored-by: Rok Mihevc <[email protected]> Signed-off-by: Rok Mihevc <[email protected]>
1 parent bc51a76 commit 303d077

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cpp/examples/arrow/parquet_read_write.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ arrow::Status WriteFullFile(std::string path_to_file) {
118118
std::shared_ptr<arrow::io::FileOutputStream> outfile;
119119
ARROW_ASSIGN_OR_RAISE(outfile, arrow::io::FileOutputStream::Open(path_to_file));
120120

121-
ARROW_RETURN_NOT_OK(parquet::arrow::WriteTable(*table.get(),
122-
arrow::default_memory_pool(), outfile,
123-
/*chunk_size=*/64*1024, props, arrow_props));
121+
ARROW_RETURN_NOT_OK(
122+
parquet::arrow::WriteTable(*table.get(), arrow::default_memory_pool(), outfile,
123+
/*chunk_size=*/64 * 1024, props, arrow_props));
124124
return arrow::Status::OK();
125125
}
126126

0 commit comments

Comments
 (0)