--- nono/vm/tvram.cpp 2026/04/29 17:05:51 1.1.1.15 +++ nono/vm/tvram.cpp 2026/04/29 17:06:01 1.1.1.16 @@ -45,10 +45,10 @@ TVRAMDevice::Init() return false; } - constexpr uint devlen = 512 * 1024; + constexpr size_t devlen = 512 * 1024; mem.reset(new(std::nothrow) uint8[devlen]); if ((bool)mem == false) { - warnx("Cannot allocate %u bytes at %s", devlen, __method__); + warnx("Could not allocate %zu bytes at %s", devlen, __method__); return false; }