X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fdescriptives.c;h=0cee83e06b79b018feeeb4834e46af87fabc1f89;hb=75ac1e869e551495c403cf94a3a24dd0dfee98ef;hp=e2cb058aa9048c40511b963ec1724e55121fd0ef;hpb=918329b9f5491e695130870da8b34cf19203280f;p=pspp diff --git a/src/language/stats/descriptives.c b/src/language/stats/descriptives.c index e2cb058aa9..0cee83e06b 100644 --- a/src/language/stats/descriptives.c +++ b/src/language/stats/descriptives.c @@ -272,7 +272,7 @@ cmd_descriptives (struct lexer *lexer, struct dataset *ds) else { enum dsc_statistic s = match_statistic (lexer); - if (s == DSC_NONE ) + if (s == DSC_NONE) { lex_error (lexer, NULL); goto error; @@ -292,7 +292,7 @@ cmd_descriptives (struct lexer *lexer, struct dataset *ds) else { dsc->sort_by_stat = match_statistic (lexer); - if (dsc->sort_by_stat == DSC_NONE ) + if (dsc->sort_by_stat == DSC_NONE) dsc->sort_by_stat = DSC_MEAN; } if (lex_match (lexer, T_LPAREN)) @@ -727,7 +727,7 @@ setup_z_trns (struct dsc_proc *dsc, struct dataset *ds) t->z_score_cnt = cnt; t->missing_type = dsc->missing_type; t->exclude = dsc->exclude; - if ( t->missing_type == DSC_LISTWISE ) + if (t->missing_type == DSC_LISTWISE) { t->var_cnt = dsc->var_cnt; t->vars = xnmalloc (t->var_cnt, sizeof *t->vars); @@ -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));