diff options
author | Jefferson Delfes <jefferson.delfes@openbossa.org> | 2013-03-04 16:42:55 -0400 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2013-03-25 14:26:22 +0200 |
commit | 789f7e7bc38c4f3da32b6bd0587c4a53d8d83ac0 (patch) | |
tree | 05be9e535df9575cf4abd9fc0536a94ce93f1d77 /attrib | |
parent | 342f1aa194576f9f54f20fd8cc1856bcfb03c588 (diff) |
gatttool: fix parameter type/name from le to psm
The parameter le was changed to psm and its type was modified from
boolean to int, but header was unmodified. That change occurred in commit
0cc24599637ed6666469c68d55f4e42ff722e447.
Diffstat (limited to 'attrib')
-rw-r--r-- | attrib/gatttool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/attrib/gatttool.h b/attrib/gatttool.h index a38339b71..260480d2b 100644 --- a/attrib/gatttool.h +++ b/attrib/gatttool.h @@ -22,7 +22,7 @@ */ int interactive(const gchar *src, const gchar *dst, const gchar *dst_type, - gboolean le); + int psm); GIOChannel *gatt_connect(const gchar *src, const gchar *dst, const gchar *dst_type, const gchar *sec_level, int psm, int mtu, BtIOConnect connect_cb); |