|
From: Alain P. <apa...@us...> - 2002-08-12 12:08:00
|
The following file was modified in apps/bluetooth/experimental:
Name Old version New version Tag Comment
---- ----------- ----------- --- -------
bt_if.c 1.51 1.52=20=20=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Corrected a missing \0 missing at the end of the name to send to the module
Corrected a "char" to "signed char" so that there is no more warning.
The diff of the modified file(s):
--- bt_if.c 9 Aug 2002 14:54:45 -0000 1.51
+++ bt_if.c 12 Aug 2002 12:07:58 -0000 1.52
@@ -871,7 +871,7 @@
}
else
{
- if ((char)con_hdl[2] >=3D 0)
+ if ((signed char)con_hdl[2] >=3D 0)
printf("CLOCK OFFSET =3D 0x%X%X\n", con_hdl[1], con_hdl[0]);
else
printf("Not valid CLOCK OFFSET value !!!\n");
@@ -895,7 +895,7 @@
}
else
{
- if ( (char)num_rtx[1] >=3D 0 )
+ if ( (signed char)num_rtx[1] >=3D 0 )
printf("read num broadcast rtx =3D 0x%X\n", num_rtx[0]);
else
printf("Not valid BROADCAST RTX value =3D 0x%X !!!\n",num_rtx[1]);
@@ -1383,8 +1383,8 @@
{
buf[len++] =3D ' ';
buf[len++] =3D '(';
- buf[len] =3D '\0';
}
+ buf[len] =3D '\0';
}
=20
if (add_host)
|