Signed-off-by: Ryan Moeller <ryan(a)iXsystems.com>
---
src/bhyve/bhyve_monitor.c | 4 ++--
src/bhyve/bhyve_process.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/bhyve/bhyve_monitor.c b/src/bhyve/bhyve_monitor.c
index ad6977e562..b9ad4520d9 100644
--- a/src/bhyve/bhyve_monitor.c
+++ b/src/bhyve/bhyve_monitor.c
@@ -77,8 +77,8 @@ bhyveMonitorIO(int watch, int kq, int events G_GNUC_UNUSED, void
*opaque)
if (kev.filter == EVFILT_PROC && (kev.fflags & NOTE_EXIT) != 0) {
if ((pid_t)kev.ident != vm->pid) {
virReportError(VIR_ERR_INTERNAL_ERROR,
- _("event from unexpected proc %ju!=%ju"),
- (uintmax_t)vm->pid, (uintmax_t)kev.ident);
+ _("event from unexpected proc %ju!=%ju"),
+ (uintmax_t)vm->pid, (uintmax_t)kev.ident);
return;
}
diff --git a/src/bhyve/bhyve_process.c b/src/bhyve/bhyve_process.c
index 9352baf172..4da2a702e6 100644
--- a/src/bhyve/bhyve_process.c
+++ b/src/bhyve/bhyve_process.c
@@ -140,7 +140,7 @@ virBhyveProcessStart(virConnectPtr conn,
VIR_FREE(driver->pidfile);
if (!(driver->pidfile = virPidFileBuildPath(BHYVE_STATE_DIR,
- vm->def->name))) {
+ vm->def->name))) {
virReportSystemError(errno,
"%s", _("Failed to build pidfile
path"));
goto cleanup;
--
2.23.0