From 5e2e59679b23010a04d04bbe9473dba89bd6dd30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 17 Apr 2020 22:17:33 +0200 Subject: [PATCH] grid: reflow: make tracking_points array 'const' The elements aren't, and cannot be, const. But the array itself can, and should be. --- grid.c | 2 +- grid.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/grid.c b/grid.c index b50a095d..3c183703 100644 --- a/grid.c +++ b/grid.c @@ -57,7 +57,7 @@ void grid_reflow(struct grid *grid, int new_rows, int new_cols, int old_screen_rows, int new_screen_rows, size_t tracking_points_count, - struct coord *_tracking_points[static tracking_points_count]) + struct coord *const _tracking_points[static tracking_points_count]) { struct row *const *old_grid = grid->rows; const int old_rows = grid->num_rows; diff --git a/grid.h b/grid.h index a2ff4b99..d4b1aa25 100644 --- a/grid.h +++ b/grid.h @@ -10,7 +10,7 @@ void grid_reflow( struct grid *grid, int new_rows, int new_cols, int old_screen_rows, int new_screen_rows, size_t tracking_points_count, - struct coord *tracking_points[static tracking_points_count]); + struct coord *const tracking_points[static tracking_points_count]); static inline int grid_row_absolute(const struct grid *grid, int row_no)