mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
cli: add missing \n in error message
The error messages returned by illegal_tag() don't contain newlines.
This commit is contained in:
parent
07fdac912f
commit
735cbb8719
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ parse_tag_command_line (void *ctx, int argc, char **argv,
|
||||||
|
|
||||||
msg = illegal_tag (argv[i] + 1, is_remove);
|
msg = illegal_tag (argv[i] + 1, is_remove);
|
||||||
if (msg) {
|
if (msg) {
|
||||||
fprintf (stderr, "Error: %s", msg);
|
fprintf (stderr, "Error: %s\n", msg);
|
||||||
return TAG_PARSE_INVALID;
|
return TAG_PARSE_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue