Skip to content

Commit

Permalink
Fix a minor logical error in posix_io.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Brown committed Dec 7, 2007
1 parent df86847 commit 698b5bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/posix_io.c
Expand Up @@ -264,7 +264,7 @@ int select ( fd_set *readfds, int wait ) {
if ( ! file )
return -EBADF;
if ( ( list_empty ( &file->data ) ) &&
( file->rc != -EINPROGRESS ) )
( file->rc == -EINPROGRESS ) )
continue;
/* Data is available or status has changed */
FD_ZERO ( readfds );
Expand Down

0 comments on commit 698b5bc

Please sign in to comment.