git: b8cca0cdc0c1 - stable/13 - bhyve: remove redundant variable
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 28 Apr 2023 12:03:49 UTC
The branch stable/13 has been updated by corvink:
URL: https://cgit.FreeBSD.org/src/commit/?id=b8cca0cdc0c1efe6282028de47ae7f56dc4fa6b1
commit b8cca0cdc0c1efe6282028de47ae7f56dc4fa6b1
Author: Vitaliy Gusev <gusev.vitaliy@gmail.com>
AuthorDate: 2023-03-01 07:45:46 +0000
Commit: Corvin Köhne <corvink@FreeBSD.org>
CommitDate: 2023-04-28 12:01:23 +0000
bhyve: remove redundant variable
Reviewed by: corvink,markj
Sponsored by: vStack
Differential Revision: https://reviews.freebsd.org/D38836
---
usr.sbin/bhyve/bhyverun.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/usr.sbin/bhyve/bhyverun.c b/usr.sbin/bhyve/bhyverun.c
index 5c8265571be9..dd30eb4405ef 100644
--- a/usr.sbin/bhyve/bhyverun.c
+++ b/usr.sbin/bhyve/bhyverun.c
@@ -1243,7 +1243,7 @@ set_defaults(void)
int
main(int argc, char *argv[])
{
- int c, error, err;
+ int c, error;
int max_vcpus, memflags;
struct vmctx *ctx;
uint64_t rip;
@@ -1444,8 +1444,8 @@ main(int argc, char *argv[])
if (get_config_bool_default("memory.guest_in_core", false))
memflags |= VM_MEM_F_INCORE;
vm_set_memflags(ctx, memflags);
- err = vm_setup_memory(ctx, memsize, VM_MMAP_ALL);
- if (err) {
+ error = vm_setup_memory(ctx, memsize, VM_MMAP_ALL);
+ if (error) {
fprintf(stderr, "Unable to setup memory (%d)\n", errno);
exit(4);
}