Fix memory leaks.
[pspp-builds.git] / src / do-if.c
index 5dfc0626dfc92932bd9ec24a27216eaa1a8fbab2..73fc057c037ac6ad15f383bb3ed432adf7622957 100644 (file)
 
 #include "debug-print.h"
 
-#if DEBUGGING
-#include <stdio.h>
-#endif
-
 /* *INDENT-OFF* */
 /* Description of DO IF transformations:
 
@@ -248,7 +244,7 @@ parse_do_if (void)
   struct do_if_trns *t;
   struct expression *e;
 
-  e = expr_parse (PXP_BOOLEAN);
+  e = expr_parse (EXPR_BOOLEAN);
   if (!e)
     return NULL;
   if (token != '.')