1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-30 16:51:41 +00:00

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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=265366

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