This is an automated email from the ASF dual-hosted git repository. masayuki pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 493152a45f12ce66598eb4b4b99fb74138089a77 Author: Xiang Xiao <xiaoxi...@xiaomi.com> AuthorDate: Sun Sep 18 16:46:53 2022 +0800 fs/eventfd: Remove the extra space Signed-off-by: Xiang Xiao <xiaoxi...@xiaomi.com> --- fs/vfs/fs_eventfd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/vfs/fs_eventfd.c b/fs/vfs/fs_eventfd.c index 4a69333efe..a34e55a648 100644 --- a/fs/vfs/fs_eventfd.c +++ b/fs/vfs/fs_eventfd.c @@ -491,8 +491,8 @@ static int eventfd_do_poll(FAR struct file *filep, FAR struct pollfd *fds, /* Remove all memory of the poll setup */ - *slot = NULL; - fds->priv = NULL; + *slot = NULL; + fds->priv = NULL; goto out; }