mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Remove misleading "addcpu" in an error message emitted by fbsdrun_deletecpu().
Pointed out by: novel
This commit is contained in:
parent
09fd42cb88
commit
067824256f
1 changed files with 1 additions and 2 deletions
|
|
@ -229,8 +229,7 @@ fbsdrun_deletecpu(struct vmctx *ctx, int vcpu)
|
|||
{
|
||||
|
||||
if (!CPU_ISSET(vcpu, &cpumask)) {
|
||||
fprintf(stderr, "addcpu: attempting to delete unknown cpu %d\n",
|
||||
vcpu);
|
||||
fprintf(stderr, "Attempting to delete unknown cpu %d\n", vcpu);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue