|
From: Mattias A. <mat...@us...> - 2001-08-22 17:49:57
|
The following file was modified in apps/bluetooth/experimental:
Name Old version New version Comment
---- ----------- ----------- -------
bt_if.c 1.28 1.29=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* added missing return
The diff of the modified file(s):
--- bt_if.c 2001/08/17 09:23:25 1.28
+++ bt_if.c 2001/08/22 17:49:56 1.29
@@ -517,8 +517,6 @@
tmp[0]=3D len;
memcpy(tmp+1, cmd, len+1); /* don't forget nullterminate... */
=20
- //printf("bt_testcmd : [%d] '%s'", len, cmd);
-=20=20=20=20
#ifndef BT_USERSTACK=20
if ((ret_val =3D ioctl(bt_cfd, BTTESTCOMMAND, tmp)) < 0)
{
@@ -947,6 +945,7 @@
perror(__FUNCTION__);
exit(1);
}
+ return result;
#else
return hci_read_country_code();
#endif
|