diff options
author | Roland McGrath <roland@gnu.org> | 2001-06-01 21:49:39 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-06-01 21:49:39 +0000 |
commit | e9b8868abfd6568592031cd2f615f3d8b8836204 (patch) | |
tree | 8e8a57ac7a0020680d9edba4f524d94db2103821 | |
parent | dd750de1577a53cfeea8bfd5f35bf539f9e6ac24 (diff) |
2001-06-01 Roland McGrath <roland@frob.com>
* users.c (trivfs_S_io_select): Fix typo in last change.
-rw-r--r-- | term/users.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/term/users.c b/term/users.c index a987454d..1b50f3b9 100644 --- a/term/users.c +++ b/term/users.c @@ -2030,7 +2030,7 @@ trivfs_S_io_select (struct trivfs_protid *cred, *type = available; mutex_unlock (&global_lock); - return available ? 0 EINTR; + return available ? 0 : EINTR; } } |