[host] app: remove debug line and fix my failure to count

This commit is contained in:
Geoffrey McRae 2022-01-05 19:25:51 +11:00
parent 0ccc84959e
commit 7cc9b5f77c

View File

@ -629,11 +629,10 @@ static bool newKVMFRData(KVMFRUserData * dst)
record->size = sizeof(*osInfo);
osInfo->os = KVMFR_OS_OTHER;
if (!appendBuffer(dst, record, "Unknown\0", 9))
if (!appendBuffer(dst, record, "Unknown", 8))
return false;
}
DEBUG_INFO("done KVMFRData");
return true;
}