diff options
author | David Pursell <dpursell@google.com> | 2015-09-14 20:49:41 +0200 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-09-14 20:49:41 +0200 |
commit | 49a49e4f0659696b71c0ec2d32a0ac4948c5d977 (patch) | |
tree | 469c31a8f59ac74c1aa17734f1902ed7c8a6573d | |
parent | am b83fd518: Merge "recovery: Remove redirect_stdio() when calling ShowFile()." (diff) | |
parent | Merge "minadbd: update service_to_fd() signature." (diff) | |
download | android_bootable_recovery-49a49e4f0659696b71c0ec2d32a0ac4948c5d977.tar android_bootable_recovery-49a49e4f0659696b71c0ec2d32a0ac4948c5d977.tar.gz android_bootable_recovery-49a49e4f0659696b71c0ec2d32a0ac4948c5d977.tar.bz2 android_bootable_recovery-49a49e4f0659696b71c0ec2d32a0ac4948c5d977.tar.lz android_bootable_recovery-49a49e4f0659696b71c0ec2d32a0ac4948c5d977.tar.xz android_bootable_recovery-49a49e4f0659696b71c0ec2d32a0ac4948c5d977.tar.zst android_bootable_recovery-49a49e4f0659696b71c0ec2d32a0ac4948c5d977.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)) { |