mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-04-28 17:46:27 +00:00
[host] app: fix out by one compiler warning
This commit is contained in:
parent
ba9f2b85b6
commit
0ccc84959e
@ -629,7 +629,7 @@ static bool newKVMFRData(KVMFRUserData * dst)
|
|||||||
record->size = sizeof(*osInfo);
|
record->size = sizeof(*osInfo);
|
||||||
|
|
||||||
osInfo->os = KVMFR_OS_OTHER;
|
osInfo->os = KVMFR_OS_OTHER;
|
||||||
if (!appendBuffer(dst, record, "Unknown", 9))
|
if (!appendBuffer(dst, record, "Unknown\0", 9))
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user