svn commit: r265366 - head/usr.sbin/bhyve
Neel Natu
neel at FreeBSD.org
Mon May 5 16:35:38 UTC 2014
Author: neel
Date: Mon May 5 16:35:37 2014
New Revision: 265366
URL: http://svnweb.freebsd.org/changeset/base/265366
Log:
Remove misleading "addcpu" in an error message emitted by fbsdrun_deletecpu().
Pointed out by: novel
Modified:
head/usr.sbin/bhyve/bhyverun.c
Modified: head/usr.sbin/bhyve/bhyverun.c
==============================================================================
--- head/usr.sbin/bhyve/bhyverun.c Mon May 5 16:30:03 2014 (r265365)
+++ head/usr.sbin/bhyve/bhyverun.c Mon May 5 16:35:37 2014 (r265366)
@@ -229,8 +229,7 @@ fbsdrun_deletecpu(struct vmctx *ctx, int
{
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);
}
More information about the svn-src-head
mailing list