Skip to content

Commit

Permalink
fix clang-format version conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidaty committed Dec 17, 2024
1 parent 91aa7ae commit 4586e5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/ext_example/mysheet_extension.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ static struct pivot_row *get_pivot_row_data(struct pivot_data *pd, size_t row_ix
}

// TO DO: return zsvsheet_status
static enum zsv_ext_status get_cell_attrs(void *pdh, zsvsheet_cell_attr_t *attrs, size_t start_row, size_t row_count, size_t cols) {
static enum zsv_ext_status get_cell_attrs(void *pdh, zsvsheet_cell_attr_t *attrs, size_t start_row, size_t row_count,
size_t cols) {
struct pivot_data *pd = pdh;
size_t end_row = start_row + row_count;
if (end_row > pd->rows.used)
Expand Down

0 comments on commit 4586e5f

Please sign in to comment.