mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
Fix for a busted format string
This commit is contained in:
parent
ebfa285122
commit
eebe126842
1 changed files with 1 additions and 1 deletions
|
@ -627,7 +627,7 @@ static int builtin_set( parser_t &parser, wchar_t **argv )
|
||||||
if( erase )
|
if( erase )
|
||||||
{
|
{
|
||||||
append_format(stderr_buffer,
|
append_format(stderr_buffer,
|
||||||
_(L"%ls: Erase needs a variable name\n%ls\n"),
|
_(L"%ls: Erase needs a variable name\n"),
|
||||||
argv[0] );
|
argv[0] );
|
||||||
|
|
||||||
builtin_print_help( parser, argv[0], stderr_buffer );
|
builtin_print_help( parser, argv[0], stderr_buffer );
|
||||||
|
|
Loading…
Reference in a new issue