From 0917864a8c4ff30b5b0afe4f030ade0b44648667 Mon Sep 17 00:00:00 2001 From: ZhaoJinghui Date: Fri, 13 Jun 2025 09:38:54 +0800 Subject: [PATCH] fix warning Signed-off-by: ZhaoJinghui Change-Id: I62a0a0935a097ab84089f22dc633ee4c5480f55e --- .../app/src/session_manager/route_head_handler_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/distributeddataservice/app/src/session_manager/route_head_handler_impl.cpp b/services/distributeddataservice/app/src/session_manager/route_head_handler_impl.cpp index 9437ee8ac..5a799381f 100644 --- a/services/distributeddataservice/app/src/session_manager/route_head_handler_impl.cpp +++ b/services/distributeddataservice/app/src/session_manager/route_head_handler_impl.cpp @@ -100,7 +100,7 @@ DistributedDB::DBStatus RouteHeadHandlerImpl::GetHeadDataSize(uint32_t &headSize ZLOGI("meta data permitted"); return DistributedDB::OK; } - if(!DmAdapter::GetInstance().IsOHOSType(session_.targetDeviceId)) { + if (!DmAdapter::GetInstance().IsOHOSType(session_.targetDeviceId)) { ZLOGD("devicdId:%{public}s is not oh type", Anonymous::Change(session_.targetDeviceId).c_str()); if (appId_.empty()) { -- Gitee