Skip to content

Commit d03af5f

Browse files
xhochypitrou
authored andcommitted
s/int64/int
1 parent ce2b974 commit d03af5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/arrow/compute/kernels/aggregate.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Status AggregateUnaryKernel::Call(FunctionContext* ctx, const Datum& input, Datu
5959
RETURN_NOT_OK(aggregate_function_->Consume(*array, state->mutable_data()));
6060
} else {
6161
auto chunked_array = input.chunked_array();
62-
for (int64_t i = 0; i < chunked_array->num_chunks(); i++) {
62+
for (int i = 0; i < chunked_array->num_chunks(); i++) {
6363
auto tmp_state =
6464
ManagedAggregateState::Make(aggregate_function_, ctx->memory_pool());
6565
if (!tmp_state) return Status::OutOfMemory("AggregateState allocation failed");

0 commit comments

Comments
 (0)