summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2017-03-04 02:18:24 +0900
committerHomu <homu@barosl.com>2017-03-04 02:18:24 +0900
commit5c9028941285c5f678f16591bb7dba5fc88efe6b (patch)
tree8f0a095bb4b471cf4ff7b2e6591c83e25dcae63a /CHANGELOG.md
parent2755c58d4930f6f407a353eed48d9b11ffb09084 (diff)
parent80453b9139d5a035efaac2e963838676dcd04c37 (diff)
downloadnix-5c9028941285c5f678f16591bb7dba5fc88efe6b.zip
Auto merge of #542 - Susurrus:revents, r=fiveop
Remove revents from PollFd::new I could've used a `0i16`here as well but I liked the better semantics of `empty()`.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bf659ea1..8888f677 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -97,6 +97,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Exposed all fcntl(2) operations at the module level, so they can be
imported direclty instead of via `FcntlArg` enum.
([#541](https://github.com/nix-rust/nix/pull/541))
+- Removed `revents` argument from `PollFd::new()` as it's an output argument and
+ will be overwritten regardless of value.
+ ([#542](https://github.com/nix-rust/nix/pull/542)
### Fixed
- Fixed multiple issues with Unix domain sockets on non-Linux OSes