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:
54cc7c3
)
Fix wrong parameter order. Parameter order is mismatched with prototype.
02/135402/1
author
Deokhyun Kim
<dukan.kim@samsung.com>
Thu, 22 Jun 2017 07:13:52 +0000
(16:13 +0900)
committer
Deokhyun Kim
<dukan.kim@samsung.com>
Thu, 22 Jun 2017 07:13:52 +0000
(16:13 +0900)
Change-Id: I70eae5365f069c3244dbaf8abb3442f7c88adcab
Signed-off-by: Deokhyun Kim <dukan.kim@samsung.com>
src/bluetooth-common.c
patch
|
blob
|
history
diff --git
a/src/bluetooth-common.c
b/src/bluetooth-common.c
index a6b7a6889ab6761c111bb7205d8476fe7e443e69..5b7786b370592ff2b0f0916d6ae5e168c269fcd2 100644
(file)
--- a/
src/bluetooth-common.c
+++ b/
src/bluetooth-common.c
@@
-2222,7
+2222,7
@@
static void __bt_event_proxy(int event, bluetooth_event_param_t *param, void *us
}
cb(value_change->address, value_change->req_id, value_change->service_handle,
- gatt_handle,
value_change->offset, value_change->response_needed
,
+ gatt_handle,
(bool)value_change->response_needed, value_change->offset
,
(char *)value_change->att_value, value_change->val_len, user_data);
break;
}