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

Pointed out by:	novel
This commit is contained in:
Neel Natu 2014-05-05 16:35:37 +00:00
parent 09fd42cb88
commit 067824256f

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