From 84b0b7ea4cd6731e91f79e008a747b502106f95a Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Mon, 14 Nov 2022 09:00:06 -0500 Subject: [PATCH] bhyve: Fix a typo in a comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reported by: Mikaƫl Urankar Fixes: 719e307f80c7 ("bhyve: Cast away const when fetching a config nvlist") --- usr.sbin/bhyve/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/bhyve/config.c b/usr.sbin/bhyve/config.c index 6339ddb9f2e..807890516ee 100644 --- a/usr.sbin/bhyve/config.c +++ b/usr.sbin/bhyve/config.c @@ -68,7 +68,7 @@ _lookup_config_node(nvlist_t *parent, const char *path, bool create) /* * XXX-MJ it is incorrect to cast away the const * qualifier like this since the contract with nvlist - * says that values are immuatable, and some consumers + * says that values are immutable, and some consumers * will indeed add nodes to the returned nvlist. In * practice, however, it appears to be harmless with the * current nvlist implementation, so we just live with