summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSendil Kumar <sendilkumarn@live.com>2019-08-22 21:50:20 +0200
committerSendil Kumar <sendilkumarn@live.com>2019-08-22 21:50:20 +0200
commit67375852b45636c251faeb2e6be43bdf40d709a4 (patch)
treec7d8a8154f8f68d5a6677c2809579ae7b0adfffc
parente99c267f707776ff4dcc786d5bb2987a3546bfdf (diff)
downloadnix-67375852b45636c251faeb2e6be43bdf40d709a4.zip
remove macro symbol
-rw-r--r--CHANGELOG.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6d060eda..f3ea037f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,8 +12,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
```rust
use nix::fcntl::{readlink, readlinkat};
- readlink!(&path);
- readlinkat!(dirfd, &path);
+ readlink(&path);
+ readlinkat(dirfd, &path);
```
### Fixed