diff options
author | Tao Bao <tbao@google.com> | 2018-10-16 07:07:53 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-10-16 07:07:53 +0200 |
commit | 0d84eaf474f46bc1cccf6c5ce1ea2647c9b96f11 (patch) | |
tree | 2c568adbb0d94ee4b67fbfc5c8e3357a9fe790a4 | |
parent | Merge "Implement the graphic menus" am: 06b1a89d72 am: 14177116ca (diff) | |
parent | Merge "uncrypt: fix ioctl direction for F2FS_IOC_GET_PIN_FILE" am: b5564f37be (diff) | |
download | android_bootable_recovery-0d84eaf474f46bc1cccf6c5ce1ea2647c9b96f11.tar android_bootable_recovery-0d84eaf474f46bc1cccf6c5ce1ea2647c9b96f11.tar.gz android_bootable_recovery-0d84eaf474f46bc1cccf6c5ce1ea2647c9b96f11.tar.bz2 android_bootable_recovery-0d84eaf474f46bc1cccf6c5ce1ea2647c9b96f11.tar.lz android_bootable_recovery-0d84eaf474f46bc1cccf6c5ce1ea2647c9b96f11.tar.xz android_bootable_recovery-0d84eaf474f46bc1cccf6c5ce1ea2647c9b96f11.tar.zst android_bootable_recovery-0d84eaf474f46bc1cccf6c5ce1ea2647c9b96f11.zip |
-rw-r--r-- | uncrypt/uncrypt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uncrypt/uncrypt.cpp b/uncrypt/uncrypt.cpp index 95f40c71f..cf068ba81 100644 --- a/uncrypt/uncrypt.cpp +++ b/uncrypt/uncrypt.cpp @@ -329,7 +329,7 @@ static int produce_block_map(const char* path, const char* map_file, const char* #define F2FS_IOCTL_MAGIC 0xf5 #endif #define F2FS_IOC_SET_PIN_FILE _IOW(F2FS_IOCTL_MAGIC, 13, __u32) -#define F2FS_IOC_GET_PIN_FILE _IOW(F2FS_IOCTL_MAGIC, 14, __u32) +#define F2FS_IOC_GET_PIN_FILE _IOR(F2FS_IOCTL_MAGIC, 14, __u32) #endif if (f2fs_fs) { __u32 set = 1; |