Use FAR storage class

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1270 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2008-11-17 23:23:45 +00:00
parent bea78a9ecd
commit 6fde1cb170
+5 -5
View File
@@ -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