From 4e522d2bc9d151b0edbf67ecd8a0fcf01d7ec3f6 Mon Sep 17 00:00:00 2001 From: Neil Chen Date: Fri, 27 May 2022 11:34:47 +0800 Subject: [PATCH] Fix build warnings for huks_adapter.c 1. implicit declaration of function 'GetStoragePath' 2. expected 'const char *' but argument is of type 'int' Signed-off-by: Neil Chen --- deps_adapter/key_management_adapter/impl/src/mini/huks_adapter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/deps_adapter/key_management_adapter/impl/src/mini/huks_adapter.c b/deps_adapter/key_management_adapter/impl/src/mini/huks_adapter.c index 18f066f3..99a1dd26 100644 --- a/deps_adapter/key_management_adapter/impl/src/mini/huks_adapter.c +++ b/deps_adapter/key_management_adapter/impl/src/mini/huks_adapter.c @@ -18,6 +18,7 @@ #include "hc_file.h" #include "hc_log.h" #include "hc_types.h" +#include "hc_dev_info.h" #include "hks_api.h" #include "hks_param.h" #include "hks_type.h"