Forgotten to remove the previous if statement in commit r355838.

MFC after:	1 month
Differential Revision:	https://reviews.freebsd.org/D19400
This commit is contained in:
Marcelo Araujo 2019-12-17 01:37:02 +00:00
parent a71dc724e4
commit af1e30f8be
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=355839

View File

@ -106,10 +106,8 @@ int
vm_create(const char *name)
{
/* Try to load vmm(4) module before creating a guest. */
if (modfind("vmm") < 0) {
if (modfind("vmm") < 0)
kldload("vmm");
}
if (modfind("vmm") < 0)
kldload("vmm");
return (CREATE((char *)name));
}