commit | 4b27260bfa4515997ea323cc38e577fb5e06f74c | [log] [tgz] |
---|---|---|
author | Zijun Zhao <zijunzhao@google.com> | Mon Apr 17 19:39:58 2023 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Apr 17 19:39:58 2023 +0000 |
tree | 48f175540a062db02140d45a17e094793eee1c1f | |
parent | 9558e9485dde4c844ef3d8b4e66190c33ca3ce1d [diff] | |
parent | 4e5e01fc9d542d36c5511acff23b1e9df420bff1 [diff] |
Merge "Nullability check for inotify module." am: 8d3ae82c52 am: 98e303925c am: 4e5e01fc9d Original change: https://android-review.googlesource.com/c/platform/bionic/+/2539231 Change-Id: Ie7b16c09fdecc2c1b3ba4da97d8e399506e27eaa Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/libc/include/sys/inotify.h b/libc/include/sys/inotify.h index c3cdc85..e834d07 100644 --- a/libc/include/sys/inotify.h +++ b/libc/include/sys/inotify.h
@@ -42,7 +42,7 @@ int inotify_init(void); int inotify_init1(int __flags) __INTRODUCED_IN(21); -int inotify_add_watch(int __fd, const char* __path, uint32_t __mask); +int inotify_add_watch(int __fd, const char* _Nonnull __path, uint32_t __mask); int inotify_rm_watch(int __fd, uint32_t __watch_descriptor); __END_DECLS