mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
bhyve: Don't return -ENOMEM from qemu_fwcfg_add_file.
Reviewed by: markj Differential Revision: https://reviews.freebsd.org/D39212
This commit is contained in:
parent
61482760a0
commit
7bf44831ca
1 changed files with 1 additions and 1 deletions
|
|
@ -300,7 +300,7 @@ qemu_fwcfg_add_file(const char *name, const uint32_t size, void *const data)
|
|||
warnx(
|
||||
"%s: Unable to allocate a new qemu fwcfg files directory (count %d)",
|
||||
__func__, count);
|
||||
return (-ENOMEM);
|
||||
return (ENOMEM);
|
||||
}
|
||||
|
||||
/* copy files below file_index to new directory */
|
||||
|
|
|
|||
Loading…
Reference in a new issue