projects
/
platform
/
core
/
api
/
bluetooth.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d2eea3
)
Fix parameter order
09/142009/1
author
Deokhyun Kim
<dukan.kim@samsung.com>
Fri, 14 Jul 2017 09:59:19 +0000
(18:59 +0900)
committer
Nagaraj D R
<nagaraj.dr@samsung.com>
Wed, 2 Aug 2017 07:57:58 +0000
(13:27 +0530)
Fix parameter order should be according to prototype
Change-Id: I34abaaaf56b9eed3123e6166886a3eb434cb9218
src/bluetooth-common.c
patch
|
blob
|
history
diff --git
a/src/bluetooth-common.c
b/src/bluetooth-common.c
index ca4f90b4e691070115f3b868b4988544b1ad9775..478d7e942d6d2990cffceb419051cf7bb870a0e3 100644
(file)
--- a/
src/bluetooth-common.c
+++ b/
src/bluetooth-common.c
@@
-2296,7
+2296,7
@@
static void __bt_event_proxy(int event, bluetooth_event_param_t *param, void *us
/* TODO : Fix build error temporary */
if (chr->write_value_requested_cb)
chr->write_value_requested_cb(NULL, 0, (bt_gatt_server_h)serv, (bt_gatt_h)chr,
-
0, TRUE, (char
*)char_val->char_value, char_val->val_len,
+
TRUE, 0, (char
*)char_val->char_value, char_val->val_len,
chr->write_value_requested_user_data);
}
}