diff options
author | David Pursell <dpursell@google.com> | 2015-09-14 20:39:37 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-09-14 20:39:37 +0200 |
commit | ee17242f904730c759272b2576aafc59d764525b (patch) | |
tree | b7a6b7c96b60849875abb5996950bad52beda5ee | |
parent | Merge "recovery: Remove redirect_stdio() when calling ShowFile()." (diff) | |
parent | minadbd: update service_to_fd() signature. (diff) | |
download | android_bootable_recovery-ee17242f904730c759272b2576aafc59d764525b.tar android_bootable_recovery-ee17242f904730c759272b2576aafc59d764525b.tar.gz android_bootable_recovery-ee17242f904730c759272b2576aafc59d764525b.tar.bz2 android_bootable_recovery-ee17242f904730c759272b2576aafc59d764525b.tar.lz android_bootable_recovery-ee17242f904730c759272b2576aafc59d764525b.tar.xz android_bootable_recovery-ee17242f904730c759272b2576aafc59d764525b.tar.zst android_bootable_recovery-ee17242f904730c759272b2576aafc59d764525b.zip |
-rw-r--r-- | minadbd/services.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/minadbd/services.cpp b/minadbd/services.cpp index 859463caf..5c1d35614 100644 --- a/minadbd/services.cpp +++ b/minadbd/services.cpp @@ -86,7 +86,7 @@ static int create_service_thread(void (*func)(int, void *), void *cookie) { return s[0]; } -int service_to_fd(const char* name) { +int service_to_fd(const char* name, const atransport* transport) { int ret = -1; if (!strncmp(name, "sideload:", 9)) { |