From 1455c5a4e19dc1d263547366fa1a1b0c9bbe0246 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E5=8B=87=E7=90=A6?= Date: Mon, 24 Mar 2025 11:13:56 +0000 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AF=B9cJSON=E7=9A=84int64?= =?UTF-8?q?=5Ft=E7=B1=BB=E5=9E=8B=E7=9A=84=E6=94=AF=E6=8C=81=20Signed-off-?= =?UTF-8?q?by:yang=5Fyong=5Fqi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 杨勇琦 --- standard/appspawn_service.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standard/appspawn_service.c b/standard/appspawn_service.c index aae3dd26..cbc1808e 100644 --- a/standard/appspawn_service.c +++ b/standard/appspawn_service.c @@ -1655,7 +1655,7 @@ APPSPAWN_STATIC int AppspawpnDevicedebugKill(int pid, cJSON *args) } APPSPAWN_LOGI("appspawn devicedebug debugable=%{public}d, pid=%{public}d, signal=%{public}d", - appInfo->isDebuggable, pid, signal->valueint); + appInfo->isDebuggable, pid, (int)signal->valueint); if (kill(pid, signal->valueint) != 0) { APPSPAWN_LOGE("appspawn devicedebug unable to kill process, pid: %{public}d ret %{public}d", pid, errno); -- Gitee