diff options
author | Mark Johnston <markj@FreeBSD.org> | 2022-10-25 13:22:12 +0000 |
---|---|---|
committer | Mark Johnston <markj@FreeBSD.org> | 2022-10-25 15:16:56 +0000 |
commit | e008f5be72bace21e10fc602d83ec05fb89d4476 (patch) | |
tree | 08c74b58e1c3262fb8f8d69b7492048bb300c5e6 | |
parent | 03f7ccab32078467ff0df14c7996747269a1962c (diff) |
bhyve: Fix a typo in a function name
MFC after: 1 week
-rw-r--r-- | usr.sbin/bhyve/bhyverun.c | 4 |
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"); |