X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fcrosstabs.q;h=4d8a2b7bdd6fdfb29d3cd8622cf64a8943f17929;hb=ca274c4e64fcf5281dd5be439ea0d235688f81ca;hp=775e415a53faaa71d8e96534ceb4cd8e7b9948d7;hpb=ac2f16c0421fc0d2d404f9555db5f2eb5d555a7b;p=pspp-builds.git diff --git a/src/language/stats/crosstabs.q b/src/language/stats/crosstabs.q index 775e415a..4d8a2b7b 100644 --- a/src/language/stats/crosstabs.q +++ b/src/language/stats/crosstabs.q @@ -167,7 +167,7 @@ static int num_cells; /* Number of cells requested. */ static int cells[8]; /* Cells requested. */ /* WRITE. */ -static int write; /* One of WR_* that specifies the WRITE style. */ +static int write_style; /* One of WR_* that specifies the WRITE style. */ /* Command parsing info. */ static struct cmd_crosstabs cmd; @@ -288,11 +288,11 @@ internal_cmd_crosstabs (struct lexer *lexer, struct dataset *ds) + cmd.a_write[CRS_WR_CELLS] == 0)) cmd.a_write[CRS_WR_CELLS] = 1; if (cmd.a_write[CRS_WR_CELLS]) - write = CRS_WR_CELLS; + write_style = CRS_WR_CELLS; else if (cmd.a_write[CRS_WR_ALL]) - write = CRS_WR_ALL; + write_style = CRS_WR_ALL; else - write = CRS_WR_NONE; + write_style = CRS_WR_NONE; ok = procedure_with_splits (ds, precalc, mode == GENERAL ? calc_general : calc_integer,