summaryrefslogtreecommitdiffstats
path: root/input/device.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-05-15 22:49:02 +0000
committerMarcel Holtmann <marcel@holtmann.org>2008-05-15 22:49:02 +0000
commitdcada8eed787ddcca19634f5a71a4dd0a2dc1856 (patch)
tree5dc0a6641d1326fb634958f30bc579a7a6e6afe7 /input/device.h
parentdcaedb1f984f1af368861c4ebb6a6906aee75ac9 (diff)
Fix wrong usage of non const bdaddr_t
Diffstat (limited to 'input/device.h')
-rw-r--r--input/device.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/input/device.h b/input/device.h
index 00f56df6..c9296ad0 100644
--- a/input/device.h
+++ b/input/device.h
@@ -45,6 +45,6 @@ int input_device_unregister(DBusConnection *conn, const char *path);
gboolean input_device_is_registered(bdaddr_t *src, bdaddr_t *dst);
-int input_device_set_channel(bdaddr_t *src, bdaddr_t *dst, int psm, int nsk);
-int input_device_close_channels(bdaddr_t *src, bdaddr_t *dst);
+int input_device_set_channel(const bdaddr_t *src, const bdaddr_t *dst, int psm, int nsk);
+int input_device_close_channels(const bdaddr_t *src, const bdaddr_t *dst);
int input_device_connadd(bdaddr_t *src, bdaddr_t *dst);