mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-02-08 13:45:37 +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);
|
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…
Reference in a new issue