Work toward getting rid of finalizers and control stacks and jumping around among...
[pspp] / src / language / xforms / select-if.c
index 72284f36539ca14d658c3298612b0e8d13ca0034..313b5fc4fc9ad9ab6122b1cc41894cc7105ad68c 100644 (file)
@@ -50,7 +50,7 @@ cmd_select_if (struct lexer *lexer, struct dataset *ds)
   struct expression *e;
   struct select_if_trns *t;
 
-  e = expr_parse_bool (lexer, NULL, ds);
+  e = expr_parse_bool (lexer, ds);
   if (!e)
     return CMD_CASCADING_FAILURE;
 
@@ -69,7 +69,7 @@ cmd_select_if (struct lexer *lexer, struct dataset *ds)
 }
 
 /* Performs the SELECT IF transformation T on case C. */
-static int
+static enum trns_result
 select_if_proc (void *t_, struct ccase **c,
                 casenumber case_num)
 {