mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-14 04:57:54 +00:00
[host] app: fix out by one compiler warning
This commit is contained in:
parent
ba9f2b85b6
commit
0ccc84959e
1 changed files with 1 additions and 1 deletions
|
@ -629,7 +629,7 @@ static bool newKVMFRData(KVMFRUserData * dst)
|
|||
record->size = sizeof(*osInfo);
|
||||
|
||||
osInfo->os = KVMFR_OS_OTHER;
|
||||
if (!appendBuffer(dst, record, "Unknown", 9))
|
||||
if (!appendBuffer(dst, record, "Unknown\0", 9))
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue