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

remove obsolete debug messages

This commit is contained in:
Stefan Lankes 2017-01-20 10:50:04 +01:00
parent eabac9fa79
commit 0e881abbbf

View file

@ -319,7 +319,6 @@ int sys_open(const char* name, int flags, int mode)
if (is_uhyve()) {
uhyve_open_t uhyve_open = {(const char*)virt_to_phys((size_t)name), flags, mode, -1};
kprintf("name %s, %p, 0x%zx\n", name, name, uhyve_open.name);
outportl(UHYVE_PORT_OPEN, (unsigned)virt_to_phys((size_t) &uhyve_open));
return uhyve_open.ret;