From d416357a9e9c23251ff1357f0f1c3ba5ac48223e Mon Sep 17 00:00:00 2001 From: John Darrington Date: Thu, 25 Jul 2019 16:46:16 +0200 Subject: [PATCH] Descriptives: Constness --- src/language/stats/descriptives.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/language/stats/descriptives.c b/src/language/stats/descriptives.c index e2cb058aa9..a4b8e53b83 100644 --- a/src/language/stats/descriptives.c +++ b/src/language/stats/descriptives.c @@ -1004,7 +1004,7 @@ display (struct dsc_proc *dsc) table, PIVOT_AXIS_ROW, N_("Variable")); for (size_t i = 0; i < dsc->var_cnt; i++) { - struct dsc_var *dv = &dsc->vars[i]; + const struct dsc_var *dv = &dsc->vars[i]; int row = pivot_category_create_leaf (variables->root, pivot_value_new_variable (dv->v)); -- 2.30.2