This commit is contained in:
Fabian Boehm 2023-11-29 17:03:10 +01:00
parent 13ba5bd405
commit b23057ee61

View file

@ -105,9 +105,11 @@ pub fn disown(parser: &Parser, streams: &mut IoStreams, args: &mut [&wstr]) -> O
if let Some(j) = parser.job_get_from_pid(pid) {
jobs.push(j);
} else {
streams
.err
.append(wgettext_fmt!("%ls: Could not find job '%d'\n", cmd, pid));
streams.err.append(wgettext_fmt!(
"%ls: Could not find job '%d'\n",
cmd,
pid
));
}
}
}