X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Ffrequencies.q;h=95041d5d80aa3fa059e967e811b4f073dccc2f60;hb=18f6e8958244f938e9e9a03a4230cacf0d22a470;hp=827f02af33342e8e29d2803b1526fc698636f823;hpb=e9aa6e433b846849da90550f6800095d569fb549;p=pspp diff --git a/src/language/stats/frequencies.q b/src/language/stats/frequencies.q index 827f02af33..95041d5d80 100644 --- a/src/language/stats/frequencies.q +++ b/src/language/stats/frequencies.q @@ -335,7 +335,7 @@ internal_cmd_frequencies (void) n_variables = 0; v_variables = NULL; - if (!parse_frequencies (&cmd)) + if (!parse_frequencies (&cmd, NULL)) return CMD_FAILURE; if (cmd.onepage_limit == NOT_LONG) @@ -791,7 +791,7 @@ cleanup_freq_tab (struct variable *v) /* Parses the VARIABLES subcommand, adding to {n_variables,v_variables}. */ static int -frq_custom_variables (struct cmd_frequencies *cmd UNUSED) +frq_custom_variables (struct cmd_frequencies *cmd UNUSED, void *aux UNUSED) { int mode; int min = 0, max = 0; @@ -879,7 +879,7 @@ frq_custom_variables (struct cmd_frequencies *cmd UNUSED) /* Parses the GROUPED subcommand, setting the n_grouped, grouped fields of specified variables. */ static int -frq_custom_grouped (struct cmd_frequencies *cmd UNUSED) +frq_custom_grouped (struct cmd_frequencies *cmd UNUSED, void *aux UNUSED) { lex_match ('='); if ((token == T_ID && dict_lookup_var (default_dict, tokid) != NULL)