From e008f5be72bace21e10fc602d83ec05fb89d4476 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Tue, 25 Oct 2022 09:22:12 -0400 Subject: [PATCH] bhyve: Fix a typo in a function name MFC after: 1 week --- 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 65e1223bd25f..6b0b61cc897c 100644 --- a/usr.sbin/bhyve/bhyverun.c +++ b/usr.sbin/bhyve/bhyverun.c @@ -332,7 +332,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; @@ -1423,7 +1423,7 @@ main(int argc, char *argv[]) exit(1); } - calc_topolopgy(); + calc_topology(); build_vcpumaps(); value = get_config_value("memory.size");