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:
95672e9
)
Type cast the pointer for arm64 build
72/86372/1
accepted/tizen/common/20160901.143332
accepted/tizen/ivi/20160901.072646
accepted/tizen/mobile/20160901.072556
accepted/tizen/tv/20160901.072609
accepted/tizen/wearable/20160901.072627
submit/tizen/20160901.003334
author
DoHyun Pyun
<dh79.pyun@samsung.com>
Thu, 1 Sep 2016 02:04:47 +0000
(11:04 +0900)
committer
DoHyun Pyun
<dh79.pyun@samsung.com>
Thu, 1 Sep 2016 02:04:47 +0000
(11:04 +0900)
Change-Id: Idbcfa61c832763fccc541caab134e0a7fb9b1386
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
test/bt_unit_test.c
patch
|
blob
|
history
diff --git
a/test/bt_unit_test.c
b/test/bt_unit_test.c
index 8676341ab21ffb64f50839f75c76caede85c230f..13454c9d4a40f657169516a2911d65efcdcaea5a 100644
(file)
--- a/
test/bt_unit_test.c
+++ b/
test/bt_unit_test.c
@@
-3972,7
+3972,11
@@
int test_set_params(int test_id, char *param)
if (param_index == g_test_param.param_count) {
need_to_set_params = false;
+#ifdef ARCH64
+ test_input_callback((void *)(uintptr_t)test_id);
+#else
test_input_callback((void *)test_id);
+#endif
param_index = 0;
return 0;
}