fs/poll: add missing FAR qualifier to poll()

Follow-up to #8072
This commit is contained in:
Ville Juven 2023-01-11 10:15:45 +02:00 committed by Xiang Xiao
parent 383458c64e
commit 416e83d57e

View File

@ -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;