|
From: Anders J. <and...@us...> - 2004-02-10 00:22:46
|
The following files were modified in libs/openbt:
Name Old version New version Tag Comment
---- ----------- ----------- --- -------
bt_if.c 1.9 1.10=20=20=20=20=20=20=20=20=20=20=20=20=20=20
bt_if.h 1.8 1.9=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
bt_write_page_to argument changed to int.
The diff of the modified file(s):
--- bt_if.c 2004/01/30 11:58:37 1.9
+++ bt_if.c 2004/02/09 15:09:58 1.10
@@ -759,9 +759,9 @@ bt_write_num_broadcast_rtx(int bt_cfd, u
}
=20
void
-bt_write_page_to(int bt_cfd, unsigned char* page_to)
+bt_write_page_to(int bt_cfd, int page_to)
{
- if (ioctl(bt_cfd, HCIWRITEPAGETO, page_to) < 0)
+ if (ioctl(bt_cfd, HCIWRITEPAGETO, &page_to) < 0)
{
perror(__FUNCTION__);
}
--- bt_if.h 2004/01/30 11:58:37 1.8
+++ bt_if.h 2004/02/09 15:09:58 1.9
@@ -412,7 +412,7 @@ void bt_exit_sniff_mode(int bt_cfd, unsi
void bt_read_clock_offset(int bt_cfd, unsigned char* con_hdl);
void bt_read_num_broadcast_rtx(int bt_cfd);
void bt_write_num_broadcast_rtx(int bt_cfd, unsigned char* num_rtx);
-void bt_write_page_to(int bt_cfd, unsigned char* page_to);
+void bt_write_page_to(int bt_cfd, int page_to);
void bt_read_tx_power_level(int bt_cfd, unsigned char* tx_power_level);
void bt_write_link_supervision_to(int bt_cfd, unsigned char* link_to);
void bt_write_page_scan_activity(int bt_cfd, unsigned char* page_scan);
|