X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fnumeric.c;h=c04e8eba7a0f9f4797dbaf95276c5bae16b24c6f;hb=f42cd385428298f9ee9795a3296e32363a9b0baa;hp=82b175725d27e2ff15070459bea9a899b0ae432d;hpb=b3f647847a611237213102734f1cd2e9d2c3b5ab;p=pspp diff --git a/src/language/dictionary/numeric.c b/src/language/dictionary/numeric.c index 82b175725d..c04e8eba7a 100644 --- a/src/language/dictionary/numeric.c +++ b/src/language/dictionary/numeric.c @@ -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; } }