Ran pgindent [skip ci]

This commit is contained in:
Andrew Kane
2025-06-18 20:07:46 -07:00
parent 3a49d141b3
commit e6bad96a03

View File

@@ -916,8 +916,8 @@ vector_concat(PG_FUNCTION_ARGS)
Vector *b = PG_GETARG_VECTOR_P(1);
Vector *result;
int dim = a->dim + b->dim;
int dim_a = a->dim;
int dim_b = b->dim;
int dim_a = a->dim;
int dim_b = b->dim;
CheckDim(dim);
result = InitVector(dim);