mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-06 08:51:14 -03:00
function: Fix a broken format string
This commit is contained in:
@@ -156,7 +156,7 @@ fn parse_cmd_opts(
|
||||
if pid.is_err() || pid.unwrap() < 0 {
|
||||
streams
|
||||
.err
|
||||
.append(wgettext_fmt!("%ls: %ls: invalid process id", cmd));
|
||||
.append(wgettext_fmt!("%ls: %ls: invalid process id", cmd, woptarg));
|
||||
return STATUS_INVALID_ARGS;
|
||||
}
|
||||
let pid = pid.unwrap();
|
||||
|
||||
Reference in New Issue
Block a user