summaryrefslogtreecommitdiff
path: root/nuttx/drivers/pipe_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/drivers/pipe_common.c')
-rw-r--r--nuttx/drivers/pipe_common.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/drivers/pipe_common.c b/nuttx/drivers/pipe_common.c
index f00705f70..87d496f62 100644
--- a/nuttx/drivers/pipe_common.c
+++ b/nuttx/drivers/pipe_common.c
@@ -519,11 +519,11 @@ ssize_t pipecommon_write(FAR struct file *filep, FAR const char *buffer, size_t
#ifndef CONFIG_DISABLE_POLL
int pipecommon_poll(FAR struct file *filep, FAR struct pollfd *fds)
{
- struct inode *inode = filep->f_inode;
- struct pipe_dev_s *dev = inode->i_private;
- pollevent_t eventset;
- pipe_ndx_t nbytes;
- int i;
+ FAR struct inode *inode = filep->f_inode;
+ FAR struct pipe_dev_s *dev = inode->i_private;
+ pollevent_t eventset;
+ pipe_ndx_t nbytes;
+ int i;
/* Some sanity checking */
#if CONFIG_DEBUG