minadbd: update service_to_fd() signature.

No functional change, just matching the signature to an adb change. See
https://android-review.googlesource.com/#/c/169601/.

Change-Id: Ic826864e126054849b3a4d193ded8acc5ee5269c
This commit is contained in:
David Pursell 2015-08-25 12:50:47 -07:00
parent 4c223f4e39
commit c3d4d53546

View file

@ -86,7 +86,7 @@ static int create_service_thread(void (*func)(int, void *), void *cookie) {
return s[0]; return s[0];
} }
int service_to_fd(const char* name) { int service_to_fd(const char* name, const atransport* transport) {
int ret = -1; int ret = -1;
if (!strncmp(name, "sideload:", 9)) { if (!strncmp(name, "sideload:", 9)) {