From e8d0f09722f297fc87bf51fa161434e84a457658 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Sun, 30 Apr 2017 16:14:51 +0200 Subject: [PATCH] add link to Solo5 --- tools/uhyve.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/uhyve.c b/tools/uhyve.c index d6fbc95c8..616069877 100644 --- a/tools/uhyve.c +++ b/tools/uhyve.c @@ -21,7 +21,7 @@ /* We used several existing projects as guides * kvmtest.c: http://lwn.net/Articles/658512/ - * lkvm: http://github.com/clearlinux/kvmtool + * Solo5: https://github.com/Solo5/solo5 */ /* @@ -207,7 +207,7 @@ static uint64_t memparse(const char *ptr) // Just close file descriptor if not already done static inline void close_fd(int* fd) { - if(*fd != -1) { + if (*fd != -1) { close(*fd); *fd = -1; }