summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-26 07:15:11 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-26 07:18:16 -0600
commit3810231337f94c28e41d36815eb823d2811610b7 (patch)
tree77d1ca2d5c5497a183e5d0b24a7887b716cd31f0
parentbffd76a3f5ac1e77955d10d5c412889076df76fb (diff)
downloadnuttx-3810231337f94c28e41d36815eb823d2811610b7.tar.gz
nuttx-3810231337f94c28e41d36815eb823d2811610b7.tar.bz2
nuttx-3810231337f94c28e41d36815eb823d2811610b7.zip
Typo fix. Hmmm... how did this compile before?
-rw-r--r--nuttx/fs/fs_poll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/fs/fs_poll.c b/nuttx/fs/fs_poll.c
index cbe30481b..78d68602c 100644
--- a/nuttx/fs/fs_poll.c
+++ b/nuttx/fs/fs_poll.c
@@ -314,8 +314,8 @@ int poll(FAR struct pollfd *fds, nfds_t nfds, int timeout)
}
else if (timeout > 0)
{
- time_t sec;
- uint32-_t nsec;
+ time_t sec;
+ uint32_t nsec;
/* Either wait for either a poll event(s) to occur or for the
* specified timeout to elapse with no event.