aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2022-10-25 13:22:12 +0000
committerMark Johnston <markj@FreeBSD.org>2022-10-25 15:16:56 +0000
commite008f5be72bace21e10fc602d83ec05fb89d4476 (patch)
tree08c74b58e1c3262fb8f8d69b7492048bb300c5e6
parent03f7ccab32078467ff0df14c7996747269a1962c (diff)
downloadsrc-e008f5be72bace21e10fc602d83ec05fb89d4476.tar.gz
src-e008f5be72bace21e10fc602d83ec05fb89d4476.zip
bhyve: Fix a typo in a function name
MFC after: 1 week
-rw-r--r--usr.sbin/bhyve/bhyverun.c4
1 files 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");