diff options
author | Tao Bao <tbao@google.com> | 2017-04-27 20:25:50 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-04-27 20:25:52 +0200 |
commit | 416c55cf432acd6f06501aa89f7ada7fd7855116 (patch) | |
tree | 8726487e7863cad5d946b9d2f061f5874d85baec /fuse_sideload.cpp | |
parent | Merge "applypatch: Remove the obsolete support for "applypatch -s"." (diff) | |
parent | libfusesideload: Clean up the CFLAGS for the module. (diff) | |
download | android_bootable_recovery-416c55cf432acd6f06501aa89f7ada7fd7855116.tar android_bootable_recovery-416c55cf432acd6f06501aa89f7ada7fd7855116.tar.gz android_bootable_recovery-416c55cf432acd6f06501aa89f7ada7fd7855116.tar.bz2 android_bootable_recovery-416c55cf432acd6f06501aa89f7ada7fd7855116.tar.lz android_bootable_recovery-416c55cf432acd6f06501aa89f7ada7fd7855116.tar.xz android_bootable_recovery-416c55cf432acd6f06501aa89f7ada7fd7855116.tar.zst android_bootable_recovery-416c55cf432acd6f06501aa89f7ada7fd7855116.zip |
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 1725e8823..279a976ad 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; } |