From f2367948e3e9332337e39f54345c0a82afcb3985 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Mon, 17 Oct 2022 13:20:23 -0400 Subject: [PATCH] Another android fix --- .../tv-casting-app/tv-casting-common/src/PersistenceManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tv-casting-app/tv-casting-common/src/PersistenceManager.cpp b/examples/tv-casting-app/tv-casting-common/src/PersistenceManager.cpp index f4fa83f682c21d..0d71d28ca83a38 100644 --- a/examples/tv-casting-app/tv-casting-common/src/PersistenceManager.cpp +++ b/examples/tv-casting-app/tv-casting-common/src/PersistenceManager.cpp @@ -150,7 +150,7 @@ CHIP_ERROR PersistenceManager::ReadAllVideoPlayers(TargetVideoPlayerInfo outVide ReturnErrorOnFailure(chip::DeviceLayer::PersistedStorage::KeyValueStoreMgr().Get(kCastingDataKey, castingData, kCastingDataMaxBytes, &castingDataSize)); ChipLogProgress(AppServer, "PersistenceManager::ReadAllVideoPlayers Read TLV(CastingData) from KVS store with size: %lu bytes", - castingDataSize); + static_cast(castingDataSize)); TLV::TLVReader reader; reader.Init(castingData);