From 2df07629526073ff79f18e939a7c6503f1de54a2 Mon Sep 17 00:00:00 2001 From: heyinshen Date: Thu, 13 Jan 2022 11:39:57 +0800 Subject: [PATCH] fix codex Signed-off-by: heyinshen --- services/frameworks/src/module/dev_auth_module_manager.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/frameworks/src/module/dev_auth_module_manager.c b/services/frameworks/src/module/dev_auth_module_manager.c index 7fc7adb..c93ff35 100644 --- a/services/frameworks/src/module/dev_auth_module_manager.c +++ b/services/frameworks/src/module/dev_auth_module_manager.c @@ -212,7 +212,7 @@ void DestroyTask(int taskId, int moduleType) module->destroyTask(taskId); } -static uint32_t InitDasModule(void) +static int32_t InitDasModule(void) { AuthModuleBase *das = CreateDasModule(); if (das == NULL) { @@ -223,7 +223,7 @@ static uint32_t InitDasModule(void) return HC_SUCCESS; } -static uint32_t InitAccountModule(void) +static int32_t InitAccountModule(void) { AuthModuleBase *accountModule = CreateAccountModule(); if (accountModule == NULL) {