From 7cc9b5f77c83c72cde878a149ed80daeb50bf745 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Wed, 5 Jan 2022 19:25:51 +1100 Subject: [PATCH] [host] app: remove debug line and fix my failure to count --- host/src/app.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/host/src/app.c b/host/src/app.c index a6c3667e..90737070 100644 --- a/host/src/app.c +++ b/host/src/app.c @@ -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; }