From: Ben Pfaff Date: Sun, 12 Dec 2010 04:56:15 +0000 (-0800) Subject: GET DATA: Fix punctuation in error message. X-Git-Tag: v0.7.7~101 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=332f2de0d9130b4746a30f473cbbdef481956fac;p=pspp-builds.git GET DATA: Fix punctuation in error message. --- diff --git a/src/language/data-io/get-data.c b/src/language/data-io/get-data.c index 05e115a9..c3e84221 100644 --- a/src/language/data-io/get-data.c +++ b/src/language/data-io/get-data.c @@ -61,7 +61,7 @@ cmd_get_data (struct lexer *lexer, struct dataset *ds) else if (lex_match_id (lexer, "PSQL")) return parse_get_psql (lexer, ds); - msg (SE, _("Unsupported TYPE %s"), lex_tokcstr (lexer)); + msg (SE, _("Unsupported TYPE %s."), lex_tokcstr (lexer)); return CMD_FAILURE; }