git: 79569648a062 - stable/13 - bhyve: Fix a typo in a function name
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 01 Nov 2022 13:52:35 UTC
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");