diff options
author | Dmitriy Ivanov <dimitry@google.com> | 2014-07-08 11:21:56 -0700 |
---|---|---|
committer | Dmitriy Ivanov <dimitry@google.com> | 2014-07-08 11:24:03 -0700 |
commit | 3a8646fc5d9f1a9304251a1d1c8ff9e523d81b40 (patch) | |
tree | 337867e4fdbe7af8537462870d673664789165d9 /libc/include/android | |
parent | 7244a8610a1b6f7cb38336696e15e2e4ee04613c (diff) | |
download | bionic-3a8646fc5d9f1a9304251a1d1c8ff9e523d81b40.zip bionic-3a8646fc5d9f1a9304251a1d1c8ff9e523d81b40.tar.gz bionic-3a8646fc5d9f1a9304251a1d1c8ff9e523d81b40.tar.bz2 |
Change android_dlextinfo flags to uint64_t
Change-Id: Id27e8f8e58dbcf6ae79644f2ad3af3dd0aef9ae7
Diffstat (limited to 'libc/include/android')
-rw-r--r-- | libc/include/android/dlext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/android/dlext.h b/libc/include/android/dlext.h index 616e08e..5c3a206 100644 --- a/libc/include/android/dlext.h +++ b/libc/include/android/dlext.h @@ -63,7 +63,7 @@ enum { }; typedef struct { - int flags; + uint64_t flags; void* reserved_addr; size_t reserved_size; int relro_fd; |