From: Andrei Emeltchenko Date: Fri, 28 Sep 2012 11:44:23 +0000 (+0300) Subject: Bluetooth: Use %zu print specifier for size_t type X-Git-Tag: next-20121001~66^2~4 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2e430be386e97224c37086a5a48fa05a9f9b79bb;p=karo-tx-linux.git Bluetooth: Use %zu print specifier for size_t type Correct warnings Reported-by: Fengguang Wu Signed-off-by: Andrei Emeltchenko Signed-off-by: Gustavo Padovan --- diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 3151d8581733..82e478a459ff 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -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 %ld rem_len %ld", frag_len, rem_len); + BT_DBG("frag_len %zu rem_len %zu", frag_len, rem_len); memcpy(assoc->data + assoc->offset, rp->frag, frag_len); assoc->offset += frag_len;