|
From: Peter K. <pk...@us...> - 2001-03-06 11:04:46
|
The following files were modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
sdp.c 1.66 1.67=20=20=20=20=20=20=20=20=20=20=20=20
sec_client.c 1.15 1.16=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Added some missing void's.
The diff of the modified file(s):
--- sdp.c 2001/03/06 11:04:15 1.66
+++ sdp.c 2001/03/06 11:06:24 1.67
@@ -410,7 +410,7 @@
=20
#ifdef __KERNEL__
s32
-sdp_create_proc_file()
+sdp_create_proc_file(void)
{
s32 procfs_status =3D -ENOENT;
=20
@@ -453,7 +453,7 @@
}
=20
s32
-sdp_remove_proc_file()
+sdp_remove_proc_file(void)
{
#if LINUX_VERSION_CODE >=3D KERNEL_VERSION(2,4,0)
remove_proc_entry(sdp_proc_entry.name, &proc_root);
--- sec_client.c 2001/03/06 11:04:15 1.15
+++ sec_client.c 2001/03/06 11:06:24 1.16
@@ -266,7 +266,7 @@
=20
#ifdef __KERNEL__
s32
-sec_man_create_proc_file()
+sec_man_create_proc_file(void)
{
s32 procfs_status =3D -ENOENT;
=20
@@ -309,7 +309,7 @@
}
=20
s32
-sec_man_remove_proc_file()
+sec_man_remove_proc_file(void)
{
#if LINUX_VERSION_CODE >=3D KERNEL_VERSION(2,4,0)
remove_proc_entry(sec_man_proc_entry.name, &proc_root);
|