figure out frequency table structure
[pspp] / src / language / dictionary / numeric.c
index 82b175725d27e2ff15070459bea9a899b0ae432d..c04e8eba7a0f9f4797dbaf95276c5bae16b24c6f 100644 (file)
@@ -58,7 +58,7 @@ cmd_numeric (struct lexer *lexer, struct dataset *ds)
          if (!parse_format_specifier (lexer, &f))
            goto fail;
 
-         if ( ! fmt_check_output (&f))
+         if (! fmt_check_output (&f))
            goto fail;
 
          if (fmt_is_string (f.type))
@@ -71,7 +71,7 @@ cmd_numeric (struct lexer *lexer, struct dataset *ds)
 
          if (!lex_match (lexer, T_RPAREN))
            {
-              lex_error_expecting (lexer, "`)'", NULL_SENTINEL);
+              lex_error_expecting (lexer, "`)'");
              goto fail;
            }
        }