Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 392f44d3 authored by Gustavo Padovan's avatar Gustavo Padovan
Browse files

Bluetooth: Fix two warnings in BT_DBG



We just need to use the right modifiers

Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
parent 0b26ab9d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -383,7 +383,7 @@ static int a2mp_getampassoc_rsp(struct amp_mgr *mgr, struct sk_buff *skb,
	if (len < sizeof(*rsp))
		return -EINVAL;

	BT_DBG("id %d status 0x%2.2x assoc len %u", rsp->id, rsp->status,
	BT_DBG("id %d status 0x%2.2x assoc len %lu", rsp->id, rsp->status,
	       len - sizeof(*rsp));

	if (rsp->status)
+1 −1
Original line number Diff line number Diff line
@@ -883,7 +883,7 @@ static void hci_cc_read_local_amp_assoc(struct hci_dev *hdev,
	rem_len = __le16_to_cpu(rp->rem_len);

	if (rem_len > frag_len) {
		BT_DBG("frag_len %d rem_len %d", frag_len, rem_len);
		BT_DBG("frag_len %ld rem_len %ld", frag_len, rem_len);

		memcpy(assoc->data + assoc->offset, rp->frag, frag_len);
		assoc->offset += frag_len;