From 416e83d57e731cead7bee0aab69f424678b9aee8 Mon Sep 17 00:00:00 2001 From: Ville Juven Date: Wed, 11 Jan 2023 10:15:45 +0200 Subject: [PATCH] fs/poll: add missing FAR qualifier to poll() Follow-up to #8072 --- fs/vfs/fs_poll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/vfs/fs_poll.c b/fs/vfs/fs_poll.c index 404f578233..70ba1aabb3 100644 --- a/fs/vfs/fs_poll.c +++ b/fs/vfs/fs_poll.c @@ -441,7 +441,7 @@ int file_poll(FAR struct file *filep, FAR struct pollfd *fds, bool setup) int poll(FAR struct pollfd *fds, nfds_t nfds, int timeout) { - struct pollfd *kfds; + FAR struct pollfd *kfds; sem_t sem; int count = 0; int ret2;