diff options
author | Tao Bao <tbao@google.com> | 2017-04-26 12:30:46 -0700 |
---|---|---|
committer | Tao Bao <tbao@google.com> | 2017-04-27 11:04:18 -0700 |
commit | 20126e1e28c69133e73b3304716aa22b64c2744d (patch) | |
tree | 8726487e7863cad5d946b9d2f061f5874d85baec /fuse_sideload.cpp | |
parent | d5ae4253c15f727dbe06316cfeaa5feb6193513d (diff) | |
download | android_bootable_recovery-20126e1e28c69133e73b3304716aa22b64c2744d.tar.gz android_bootable_recovery-20126e1e28c69133e73b3304716aa22b64c2744d.tar.bz2 android_bootable_recovery-20126e1e28c69133e73b3304716aa22b64c2744d.zip |
libfusesideload: Clean up the CFLAGS for the module.
Remove "-DADB_HOST=0" since it doesn't include adb related stuff.
Test: mmma bootable/recovery
Test: sideload on marlin
Change-Id: Ia83a8edd31eedd803435d687513d561c873ffabe
Diffstat (limited to 'fuse_sideload.cpp')
-rw-r--r-- | fuse_sideload.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fuse_sideload.cpp b/fuse_sideload.cpp index 1725e882..279a976a 100644 --- a/fuse_sideload.cpp +++ b/fuse_sideload.cpp @@ -226,11 +226,13 @@ static int handle_open(void* /* data */, struct fuse_data* fd, const struct fuse return NO_STATUS; } -static int handle_flush(void* data, struct fuse_data* fd, const struct fuse_in_header* hdr) { +static int handle_flush(void* /* data */, struct fuse_data* /* fd */, + const struct fuse_in_header* /* hdr */) { return 0; } -static int handle_release(void* data, struct fuse_data* fd, const struct fuse_in_header* hdr) { +static int handle_release(void* /* data */, struct fuse_data* /* fd */, + const struct fuse_in_header* /* hdr */) { return 0; } |