--- nono/host/hostnet.cpp 2026/04/29 17:05:11 1.1.1.1 +++ nono/host/hostnet.cpp 2026/04/29 17:05:18 1.1.1.2 @@ -56,7 +56,7 @@ HostNetDevice::GetDrivers() // コンストラクタ HostNetDevice::HostNetDevice() - : inherited("HostNet") + : inherited(OBJ_HOSTNET) { monitor.func = ToMonitorCallback(&HostNetDevice::MonitorUpdate); monitor.SetSize(48, 20); @@ -109,21 +109,21 @@ HostNetDevice::SelectDriver() #if defined(HAVE_HOSTNET_TAP) CreateTap(); #else - item.Err("hostnet driver %s not compiled", type.c_str()); + item.Err("Hostnet driver %s not compiled", type.c_str()); #endif } else if (type == "bpf") { #if defined(HAVE_HOSTNET_BPF) CreateBPF(); #else - item.Err("hostnet driver %s not compiled", type.c_str()); + item.Err("Hostnet driver %s not compiled", type.c_str()); #endif } else if (type == "afpacket") { #if defined(HAVE_HOSTNET_AFPACKET) CreateAFPacket(); #else - item.Err("hostnet driver %s not compiled", type.c_str()); + item.Err("Hostnet driver %s not compiled", type.c_str()); #endif } else if (type == "auto") {