X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fcorrelations.q;h=f190307d1e31c9ebbacb86d97c94733e5107a2fa;hb=a29bbbe97388bb6f9c9b4df36b448dfe5023363c;hp=4c9f74b7f3344f5a5e32fdcbe70045bf679a9c45;hpb=74a57f26f1458b28a0fddbb9f46004ac8f4d9c30;p=pspp diff --git a/src/correlations.q b/src/correlations.q index 4c9f74b7f3..f190307d1e 100644 --- a/src/correlations.q +++ b/src/correlations.q @@ -14,12 +14,13 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #include #include #include "alloc.h" +#include "dictionary.h" #include "file-handle.h" #include "command.h" #include "lexer.h" @@ -32,7 +33,7 @@ struct cor_set { struct cor_set *next; struct variable **v1, **v2; - int nv1, nv2; + size_t nv1, nv2; }; struct cor_set *cor_list, *cor_last; @@ -83,7 +84,7 @@ static int cor_custom_variables (struct cmd_correlations *cmd UNUSED) { struct variable **v1, **v2; - int nv1, nv2; + size_t nv1, nv2; struct cor_set *cor; /* Ensure that this is a VARIABLES subcommand. */ @@ -133,12 +134,13 @@ cor_custom_matrix (struct cmd_correlations *cmd UNUSED) return 0; if (lex_match ('*')) - matrix_file = inline_file; - else - matrix_file = fh_parse_file_handle (); - - if (!matrix_file) - return 0; + matrix_file = NULL; + else + { + matrix_file = fh_parse (); + if (matrix_file == NULL) + return 0; + } if (!lex_force_match (')')) return 0;