|
From: Peter K. <pk...@us...> - 2001-09-18 12:20:17
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
bcsp_sequence.c 1.17 1.18=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Fixed a compiler warning.
The diff of the modified file(s):
--- bcsp_sequence.c 2001/08/16 13:01:22 1.17
+++ bcsp_sequence.c 2001/09/18 12:20:17 1.18
@@ -184,11 +184,11 @@
} else { /* out of order rx seq nbr */=20
if ((winspace > 0) && (hci_trig_send())) {
/* ack is piggybacked in next tx data packet */
- printk("seq out-of-order [exp:%d, got:%d]\n",=20
+ printk("seq out-of-order [exp:%d, got:%ld]\n",=20
expected_rxseq, BCSP_GET_SEQ(bcsp));
=20
} else {
- printk("seq out-of-order [exp:%d, got:%d], send ack\n",
+ printk("seq out-of-order [exp:%d, got:%ld], send ack\n",
expected_rxseq, BCSP_GET_SEQ(bcsp));
send_ack();
}
|