From ac53120b64edfa7b310b71ca6b0f8ef41f74324c Mon Sep 17 00:00:00 2001 From: zph Date: Sat, 28 Jun 2025 14:26:03 +0800 Subject: [PATCH] update Signed-off-by: zph --- .../service/udmf/preprocess/udmf_notifier_proxy.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/services/distributeddataservice/service/udmf/preprocess/udmf_notifier_proxy.cpp b/services/distributeddataservice/service/udmf/preprocess/udmf_notifier_proxy.cpp index 503b0a6bc..6bd4b72f3 100644 --- a/services/distributeddataservice/service/udmf/preprocess/udmf_notifier_proxy.cpp +++ b/services/distributeddataservice/service/udmf/preprocess/udmf_notifier_proxy.cpp @@ -60,9 +60,9 @@ void UdmfNotifierProxy::HandleDelayObserver(const std::string &key, const DataLo { MessageParcel reply; int32_t status = - IPC_SEND(static_cast(UdmfServiceInterfaceCode::HANDLE_DELAY_OBSERVER), reply, key, dataLoadInfo); + IPC_SEND(static_cast(UdmfNotifierInterfaceCode::HANDLE_DELAY_OBSERVER), reply, key, dataLoadInfo); if (status != E_OK) { - ZLOGE("status:%{public}d" PRIu64, status); + ZLOGE("status:%{public}d", status); } } @@ -76,9 +76,9 @@ void DelayDataCallbackProxy::DelayDataCallback(const std::string &key, const Uni { MessageParcel reply; int32_t status = - IPC_SEND(static_cast(UdmfServiceInterfaceCode::HANDLE_DELAY_OBSERVER), reply, key, data); + IPC_SEND(static_cast(UdmfNotifierInterfaceCode::HANDLE_DELAY_DATA), reply, key, data); if (status != E_OK) { - ZLOGE("status:%{public}d" PRIu64, status); + ZLOGE("status:%{public}d", status); } } } // namespace UDMF -- Gitee