projects
/
platform
/
core
/
api
/
wifi-mesh.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a04e0d
)
Change function time to succeed TCT
author
saerome.kim
<saerome.kim@samsung.com>
Tue, 13 Jun 2017 06:51:29 +0000
(15:51 +0900)
committer
saerome.kim
<saerome.kim@samsung.com>
Mon, 17 Jul 2017 02:09:10 +0000
(11:09 +0900)
- change return type from void to int of mesh_deinitialize function
Signed-off-by: saerome.kim <saerome.kim@samsung.com>
src/mesh.c
patch
|
blob
|
history
diff --git
a/src/mesh.c
b/src/mesh.c
index 3b727971115059df1314e63ae0792f4b7075ac8e..3c43dbc238de6a9005e342252be7d1b57eaa6fa9 100644
(file)
--- a/
src/mesh.c
+++ b/
src/mesh.c
@@
-406,13
+406,14
@@
EXPORT_API int mesh_initialize(mesh_h *mesh)
EXPORT_API int mesh_deinitialize(mesh_h handle)
{
+ int rv = 0;
CHECK_FEATURE_SUPPORTED(MESH_FEATURE);
- _mesh_dbus_stop(handle);
+
rv =
_mesh_dbus_stop(handle);
LOGI("Destroy handle: %p", handle);
- return
MESH_ERROR_NONE
;
+ return
rv
;
}
EXPORT_API int mesh_set_event_cb(mesh_h handle, mesh_event_cb event_handler)