Bluetooth: Use smp->local_pk + 32 instead of &smp->local_pk[32]
authorMarcel Holtmann <marcel@holtmann.org>
Mon, 16 Mar 2015 08:10:25 +0000 (01:10 -0700)
committerJohan Hedberg <johan.hedberg@intel.com>
Mon, 16 Mar 2015 08:31:31 +0000 (10:31 +0200)
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
net/bluetooth/smp.c

index 0fcd8c8..f0c5c28 100644 (file)
@@ -1859,7 +1859,7 @@ static u8 sc_send_public_key(struct smp_chan *smp)
 
 done:
        SMP_DBG("Local Public Key X: %32phN", smp->local_pk);
-       SMP_DBG("Local Public Key Y: %32phN", &smp->local_pk[32]);
+       SMP_DBG("Local Public Key Y: %32phN", smp->local_pk + 32);
        SMP_DBG("Local Private Key:  %32phN", smp->local_sk);
 
        smp_send_cmd(smp->conn, SMP_CMD_PUBLIC_KEY, 64, smp->local_pk);