aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.cpp
diff options
context:
space:
mode:
authorGravatar Kevin Ballard <kevin@sb.org>2014-09-08 23:37:34 -0700
committerGravatar Kevin Ballard <kevin@sb.org>2014-09-08 23:37:34 -0700
commitf6da9d4d5d04e9bd4e1e12727c1672e61495f33a (patch)
tree9e19fc567d2005f46894f55b4fe5ab22c8e6a9ce /builtin.cpp
parentf22864b813bca0ded5a79c7914d06187acc9afd9 (diff)
Add missing newline after `bind -k foo` error message
Diffstat (limited to 'builtin.cpp')
-rw-r--r--builtin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin.cpp b/builtin.cpp
index cde4477f..3ab3bb48 100644
--- a/builtin.cpp
+++ b/builtin.cpp
@@ -702,7 +702,7 @@ static int builtin_bind(parser_t &parser, wchar_t **argv)
case 1:
{
res = STATUS_BUILTIN_ERROR;
- append_format(stderr_buffer, _(L"%ls: Expected zero or at least two parameters, got %d"), argv[0], argc-woptind);
+ append_format(stderr_buffer, _(L"%ls: Expected zero or at least two parameters, got %d\n"), argv[0], argc-woptind);
break;
}