Fixed a bug in the levene test, and added the levene test to the oneway cmd
[pspp] / src / sel-if.c
index 330ae4371af1e0498fc4cc90d4d107144789a8e1..6f6f2d0279269083acb9e072e6648d9c9bf73285 100644 (file)
@@ -43,7 +43,7 @@ cmd_select_if (void)
   struct expression *e;
   struct select_if_trns *t;
 
-  e = expr_parse (PXP_BOOLEAN);
+  e = expr_parse (EXPR_BOOLEAN);
   if (!e)
     return CMD_FAILURE;
 
@@ -120,7 +120,7 @@ cmd_process_if (void)
 {
   struct expression *e;
 
-  e = expr_parse (PXP_BOOLEAN);
+  e = expr_parse (EXPR_BOOLEAN);
   if (!e)
     return CMD_FAILURE;