update service/src/cast_service_listener_impl_proxy.cpp.

fix:size变量格式控制符使用%zu

Signed-off-by: LongestDistance <cdwango@isoftstone.com>
This commit is contained in:
LongestDistance 2024-11-17 04:40:40 +00:00 committed by Gitee
parent 318bda558d
commit 5e5694e238
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -51,7 +51,7 @@ bool FillCastRemoteDevices(MessageParcel &data, const std::vector<CastRemoteDevi
}
if (!data.WriteInt32(static_cast<int32_t>(size))) {
CLOGE("Failed to write the device size:%lu", size);
CLOGE("Failed to write the device size:%zu", size);
return false;
}