Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Nov 2022 13:52:35 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 79569648a062 - stable/13 - bhyve: Fix a typo in a function name
Message-ID:  <202211011352.2A1DqZks059107@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=79569648a062486d324dfbfddd7096fc7c455e31

commit 79569648a062486d324dfbfddd7096fc7c455e31
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2022-10-25 13:22:12 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2022-11-01 13:45:42 +0000

    bhyve: Fix a typo in a function name
    
    (cherry picked from commit e008f5be72bace21e10fc602d83ec05fb89d4476)
---
 usr.sbin/bhyve/bhyverun.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/usr.sbin/bhyve/bhyverun.c b/usr.sbin/bhyve/bhyverun.c
index 0915e833b19b..b6bc94490d75 100644
--- a/usr.sbin/bhyve/bhyverun.c
+++ b/usr.sbin/bhyve/bhyverun.c
@@ -331,7 +331,7 @@ parse_int_value(const char *key, const char *value, int minval, int maxval)
  * vm_set_topology().  vmm.ko may enforce tighter limits.
  */
 static void
-calc_topolopgy(void)
+calc_topology(void)
 {
 	const char *value;
 	bool explicit_cpus;
@@ -1362,7 +1362,7 @@ main(int argc, char *argv[])
 		exit(1);
 	}
 
-	calc_topolopgy();
+	calc_topology();
 	build_vcpumaps();
 
 	value = get_config_value("memory.size");



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202211011352.2A1DqZks059107>