summaryrefslogtreecommitdiff
path: root/nuttx/fs/vfs/fs_poll.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/fs/vfs/fs_poll.c')
-rw-r--r--nuttx/fs/vfs/fs_poll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/fs/vfs/fs_poll.c b/nuttx/fs/vfs/fs_poll.c
index d968defb6..a471f655f 100644
--- a/nuttx/fs/vfs/fs_poll.c
+++ b/nuttx/fs/vfs/fs_poll.c
@@ -327,7 +327,7 @@ int poll(FAR struct pollfd *fds, nfds_t nfds, int timeout)
abstime.tv_sec += sec;
abstime.tv_nsec += nsec;
- if (abstime.tv_nsec > NSEC_PER_SEC)
+ if (abstime.tv_nsec >= NSEC_PER_SEC)
{
abstime.tv_sec++;
abstime.tv_nsec -= NSEC_PER_SEC;