commit | 0757a093c187b64867a9ca7c97b80d9aa7d665cf | [log] [tgz] |
---|---|---|
author | Josh Gao <jmgao@google.com> | Wed Feb 24 00:50:34 2016 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Wed Feb 24 00:50:36 2016 +0000 |
tree | f7642ffd1e4c8b68ad56942516e336cd88477a53 | |
parent | 99281df8e2eb6a302ccbcfd790a6889392541264 [diff] | |
parent | cd324766ab2a73af4106f65cd53dc0a91de5e2e9 [diff] |
Merge "minadbd: update for adb_thread_create signature change." into nyc-dev
diff --git a/minadbd/services.cpp b/minadbd/services.cpp index d25648f..658a43f 100644 --- a/minadbd/services.cpp +++ b/minadbd/services.cpp
@@ -35,11 +35,10 @@ void *cookie; }; -void* service_bootstrap_func(void* x) { +void service_bootstrap_func(void* x) { stinfo* sti = reinterpret_cast<stinfo*>(x); sti->func(sti->fd, sti->cookie); free(sti); - return 0; } static void sideload_host_service(int sfd, void* data) {