From 2e9134a889fdd0474934cca5a7a7372384a16ab7 Mon Sep 17 00:00:00 2001 From: Jiaqing Zhao Date: Fri, 4 Aug 2023 02:53:28 +0000 Subject: [PATCH] Fix compilation error in sendKey.cpp Compile error "unknown type name 'uint32_t'" since stdint.h is not included. Tracked-On: OAM-113237 Signed-off-by: Jiaqing Zhao --- sendKey.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sendKey.cpp b/sendKey.cpp index 8b6152b..a9d55a7 100644 --- a/sendKey.cpp +++ b/sendKey.cpp @@ -16,6 +16,7 @@ */ #include +#include #include #include "sendKey.h"