Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ba9765b0 authored by Josh Gao's avatar Josh Gao Committed by android-build-merger
Browse files

Merge "minadbd: update for adb_thread_create signature change."

am: b69d878b

* commit 'b69d878b':
  minadbd: update for adb_thread_create signature change.
parents 42b28f0e b69d878b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -35,11 +35,10 @@ struct stinfo {
    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) {