From: Jani Nikula Date: Tue, 4 Mar 2014 16:51:54 +0000 (+0200) Subject: cli: add missing \n in error message X-Git-Tag: 0.18_rc0~118 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=735cbb8719068c4741ed0a4f5ea68f2ed31b7009;hp=07fdac912f8b60d1de085e2733cc72eaee6707b8 cli: add missing \n in error message The error messages returned by illegal_tag() don't contain newlines. --- diff --git a/tag-util.c b/tag-util.c index e2d5b795..343c161f 100644 --- a/tag-util.c +++ b/tag-util.c @@ -172,7 +172,7 @@ parse_tag_command_line (void *ctx, int argc, char **argv, msg = illegal_tag (argv[i] + 1, is_remove); if (msg) { - fprintf (stderr, "Error: %s", msg); + fprintf (stderr, "Error: %s\n", msg); return TAG_PARSE_INVALID; }