git: e008f5be72ba - main - bhyve: Fix a typo in a function name
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 25 Oct 2022 15:17:06 UTC
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=e008f5be72bace21e10fc602d83ec05fb89d4476 commit e008f5be72bace21e10fc602d83ec05fb89d4476 Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2022-10-25 13:22:12 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2022-10-25 15:16:56 +0000 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");