X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fcasefilter.c;h=2c6336d658ca84fc2d850d75e2e21fdd4de9c9ba;hb=661b9ee29cbb6b89c4ea53a05b8a4eb3a5028de0;hp=fb23e4f674ad104c547d439d64b50dc1c4d7530e;hpb=9f650fc3d2946c216e6cd3c7922a8a63d0f97117;p=pspp-builds.git diff --git a/src/data/casefilter.c b/src/data/casefilter.c index fb23e4f6..2c6336d6 100644 --- a/src/data/casefilter.c +++ b/src/data/casefilter.c @@ -67,7 +67,7 @@ casefilter_variable_missing (const struct casefilter *filter, N_VARS is the size of VARS. */ struct casefilter * -casefilter_create (enum mv_class class, struct variable **vars, int n_vars) +casefilter_create (enum mv_class class, const struct variable **vars, int n_vars) { int i; struct casefilter * filter = xmalloc (sizeof (*filter)) ; @@ -88,7 +88,7 @@ casefilter_create (enum mv_class class, struct variable **vars, int n_vars) filter considers. N_VARS is the size of VARS */ void casefilter_add_variables (struct casefilter *filter, - struct variable *const *vars, int n_vars) + const struct variable *const *vars, int n_vars) { int i;