From 5569ed166d702ddd15aedc31de5cdda4d4056ebf Mon Sep 17 00:00:00 2001 From: zhengzhuolan Date: Mon, 20 Jan 2025 17:04:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=8D=8F=E5=90=8C=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E5=9C=BA=E6=99=AF=E6=89=93=E7=82=B9=E4=B8=8D=E8=AE=A1?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhengzhuolan --- .../distributed/src/soft_bus/distributed_subscribe_service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/distributed/src/soft_bus/distributed_subscribe_service.cpp b/services/distributed/src/soft_bus/distributed_subscribe_service.cpp index b7b5a96a4..60435b256 100644 --- a/services/distributed/src/soft_bus/distributed_subscribe_service.cpp +++ b/services/distributed/src/soft_bus/distributed_subscribe_service.cpp @@ -228,7 +228,7 @@ void DistributedService::OnBatchCanceled(const std::vectorDump().c_str()); keysStream << GetNotificationKey(notification) << ' '; - slotTypesStream << notification->GetNotificationRequestPoint()->GetSlotType() << ' '; + slotTypesStream << std::to_string(notification->GetNotificationRequestPoint()->GetSlotType()) << ' '; } std::string notificationKeys = keysStream.str(); std::string slotTypes = slotTypesStream.str(); -- Gitee