Fixed bug #11227 (T-Test not working with alpha independent variable )
[pspp-builds.git] / src / sel-if.c
index 330ae4371af1e0498fc4cc90d4d107144789a8e1..8d224d0215d793e03d2966d5319efece3eb2c208 100644 (file)
@@ -20,6 +20,7 @@
 #include <config.h>
 #include "alloc.h"
 #include "command.h"
+#include "dictionary.h"
 #include "error.h"
 #include "expr.h"
 #include "lexer.h"
@@ -43,7 +44,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 +121,7 @@ cmd_process_if (void)
 {
   struct expression *e;
 
-  e = expr_parse (PXP_BOOLEAN);
+  e = expr_parse (EXPR_BOOLEAN);
   if (!e)
     return CMD_FAILURE;