diff options
author | bz <bz@FreeBSD.org> | 2015-12-31 10:55:50 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2015-12-31 10:55:50 +0000 |
commit | ccc7e8d96a643a47f15d15a92ef25bed8220a43d (patch) | |
tree | ddf2e5249b3dafb2caefbeca207f6a3db0409d99 /usr.sbin | |
parent | f943a0f8bd775b2658a33cf53c209586a0fdc030 (diff) | |
download | FreeBSD-src-ccc7e8d96a643a47f15d15a92ef25bed8220a43d.zip FreeBSD-src-ccc7e8d96a643a47f15d15a92ef25bed8220a43d.tar.gz |
Remove unused variable after r292981 to unbreak the build.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/bhyve/bhyverun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bhyve/bhyverun.c b/usr.sbin/bhyve/bhyverun.c index cb29a48..bfa135b 100644 --- a/usr.sbin/bhyve/bhyverun.c +++ b/usr.sbin/bhyve/bhyverun.c @@ -598,7 +598,7 @@ static vmexit_handler_t handler[VM_EXITCODE_MAX] = { static void vm_loop(struct vmctx *ctx, int vcpu, uint64_t startrip) { - int error, rc, prevcpu; + int error, rc; enum vm_exitcode exitcode; cpuset_t active_cpus; |