Remove misleading "addcpu" in an error message emitted by fbsdrun_deletecpu().

Pointed out by:	novel
This commit is contained in:
neel 2014-05-05 16:35:37 +00:00
parent 08f11e3e21
commit 92337e8cda

View File

@ -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);
}