bhyve: Fix a typo in a function name

MFC after:	1 week
This commit is contained in:
Mark Johnston 2022-10-25 09:22:12 -04:00
parent 03f7ccab32
commit e008f5be72

View File

@ -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. * vm_set_topology(). vmm.ko may enforce tighter limits.
*/ */
static void static void
calc_topolopgy(void) calc_topology(void)
{ {
const char *value; const char *value;
bool explicit_cpus; bool explicit_cpus;
@ -1423,7 +1423,7 @@ main(int argc, char *argv[])
exit(1); exit(1);
} }
calc_topolopgy(); calc_topology();
build_vcpumaps(); build_vcpumaps();
value = get_config_value("memory.size"); value = get_config_value("memory.size");