commit | b69d878b9a3967b247df30dc6f8a760f720659b7 | [log] [tgz] |
---|---|---|
author | Josh Gao <jmgao@google.com> | Fri Feb 12 23:42:49 2016 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Feb 12 23:42:49 2016 +0000 |
tree | 3c5fcbe1d356ae10317d7201f8d146e88291851a | |
parent | cc8d08a4d82904d6cd202c2d50fc37748aa044c9 [diff] | |
parent | cc07b3556510d03e389a8994a8e5dbed3f3bbbb4 [diff] |
Merge "minadbd: update for adb_thread_create signature change."
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) {