From 017dd83b0fe1af2aa16989a913d1d33406b308bd Mon Sep 17 00:00:00 2001 From: zhaoyuan17 Date: Tue, 28 Sep 2021 15:02:14 +0800 Subject: [PATCH] fix codex Signed-off-by: zhaoyuan17 --- test/moduletest/appspawn_module_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/moduletest/appspawn_module_test.cpp b/test/moduletest/appspawn_module_test.cpp index 330d34bb..33c4e81e 100644 --- a/test/moduletest/appspawn_module_test.cpp +++ b/test/moduletest/appspawn_module_test.cpp @@ -210,7 +210,7 @@ bool checkProcName(const int32_t &pid, const AppSpawnStartMsg ¶ms) HiLog::Error(LABEL, "cmd sprintf_s fail ."); return CHECK_ERROR; } - if(strlen(cmd) > CMD_SIZE){ + if(strlen(cmd) > CMD_SIZE) { HiLog::Error(LABEL, " cmd length is too long ."); return CHECK_ERROR; } -- Gitee