Skip to content

Commit 2894369

Browse files
dh79pyunpull[bot]
authored andcommitted
[TIZEN] Fix the potential build errors for ARM64 (#12312)
1 parent 57c5480 commit 2894369

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/platform/Tizen/BLEManagerImpl.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ void BLEManagerImpl::HandleC1CharWriteEvent(BLE_CONNECTION_OBJECT conId, const u
806806
CHIP_ERROR err = CHIP_NO_ERROR;
807807
System::PacketBufferHandle buf;
808808

809-
ChipLogProgress(DeviceLayer, "Write request received for CHIPoBLE Client TX characteristic (data len %u)", len);
809+
ChipLogProgress(DeviceLayer, "Write request received for CHIPoBLE Client TX characteristic (data len %zu)", len);
810810
// Copy the data to a packet buffer.
811811
buf = System::PacketBufferHandle::NewWithData(value, len);
812812
VerifyOrExit(!buf.IsNull(), err = CHIP_ERROR_NO_MEMORY);
@@ -824,7 +824,7 @@ void BLEManagerImpl::HandleRXCharChanged(BLE_CONNECTION_OBJECT conId, const uint
824824
CHIP_ERROR err = CHIP_NO_ERROR;
825825
System::PacketBufferHandle buf;
826826

827-
ChipLogProgress(DeviceLayer, "Notification received on CHIPoBLE Client RX characteristic (data len %u)", len);
827+
ChipLogProgress(DeviceLayer, "Notification received on CHIPoBLE Client RX characteristic (data len %zu)", len);
828828
// Copy the data to a packet buffer.
829829
buf = System::PacketBufferHandle::NewWithData(value, len);
830830
VerifyOrExit(!buf.IsNull(), err = CHIP_ERROR_NO_MEMORY);

0 commit comments

Comments
 (0)