1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

add link to Solo5

This commit is contained in:
Stefan Lankes 2017-04-30 16:14:51 +02:00
parent c673b67d68
commit e8d0f09722

View file

@ -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;
}